-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.17 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"declaration": true,
"declarationDir": "./lib/types",
"baseUrl": ".",
"outDir": "./temp",
"module": "esnext",
"target": "esnext",
"sourceMap": true,
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"strict": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"charset": "utf8",
"pretty": true,
"jsx": "preserve",
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strictNullChecks": true
},
"exclude": [
"node_modules",
"build",
"lib",
"dist"
]
}