-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·42 lines (42 loc) · 898 Bytes
/
tsconfig.json
File metadata and controls
executable file
·42 lines (42 loc) · 898 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
40
41
42
{
"compilerOptions": {
"strict": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"strictFunctionTypes": true,
"incremental": true,
"noUncheckedIndexedAccess": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowJs": false,
"alwaysStrict": true,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": false,
"noImplicitThis": true,
"noImplicitAny": true,
"outDir": "./lib",
"sourceMap": true,
"target": "ES2019",
"typeRoots": [
"node_modules/@types",
"types"
],
"declaration": true,
"declarationMap": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"lib": [
"es5",
"es6"
]
},
"include": [
"src",
"*.d.ts"
],
"exclude": [
"node_modules"
]
}