-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (39 loc) · 935 Bytes
/
tsconfig.json
File metadata and controls
39 lines (39 loc) · 935 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
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": true,
"declaration": false,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": [
"ESNext",
/*"WebWorker", do not include web workers because it conflicts with ESNext*/
"DOM"
],
"module": "ESNext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"outDir": "out",
"strict": false,
"strictBindCallApply": true,
"sourceMap": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"target": "ESNext"
},
"exclude": [
"dist",
"webpack.common.js",
"webpack.dev.js",
"webpack.prod.js",
]
}