-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
29 lines (29 loc) · 920 Bytes
/
tsconfig.json
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
27
28
29
{
"compilerOptions": {
"outDir": "build",
"pretty": true,
"declaration": false,
"noEmitOnError": true,
"target": "esnext",
"lib": ["es6", "es7", "esnext"],
"allowJs": true,
"module": "commonjs",
"moduleResolution": "node",
"removeComments": false,
"noEmitHelpers": true,
"importHelpers": true,
"strict": true,
"strictNullChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false
},
"include": ["src"],
"exclude": ["node_modules", ".vscode-test", "*.input.*", "*.output.*"]
}