-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
74 lines (74 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"compileOnSave": false,
"compilerOptions": {
"incremental": false,
"sourceMap": true,
"charset": "utf8",
"resolveJsonModule": true,
"target": "es5",
"declaration": false,
"rootDir": "src/",
"baseUrl": ".",
"outDir": "dist/",
"experimentalDecorators": true,
"module": "amd",
"moduleResolution": "node",
"strict": true,
"strictNullChecks": true, //
"pretty": true,
"noImplicitAny": true, //
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitThis": true,
"checkJs": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"preserveConstEnums": true,
"allowJs": false,
"noEmitOnError": true,
"noEmit": false,
"suppressImplicitAnyIndexErrors": true,
"removeComments": false, // Needed for WebPack
"emitDecoratorMetadata": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"noStrictGenericChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"disableSizeLimit": true,
"forceConsistentCasingInFileNames": true,
"watch": false,
"jsx": "react",
"typeRoots": [
"./node_modules/@types",
"./src/@types"
],
"types": [
"react",
"jest",
"node"
],
"lib": [
"es5",
"es6",
"dom",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES2019",
"ES2020",
"ESNext",
"ES2020.Promise"
]
},
"exclude": [
"**/node_modules",
"**/.*/",
"dist"
],
}