-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 694 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"include": ["src/**/*.ts"],
"compilerOptions": {
"rootDir": "src",
"declarationDir": "./dist",
"outDir": "./dist",
"declaration": true,
"allowJs": false,
"target": "es2017",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"pretty": true,
"importHelpers": true,
"experimentalDecorators": true,
"suppressImplicitAnyIndexErrors": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"lib": ["es2018", "esnext.asynciterable"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strict": true
}
}