-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
96 lines (96 loc) · 2.38 KB
/
tsconfig.json
File metadata and controls
96 lines (96 loc) · 2.38 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": ".",
"charset": "utf8",
"checkJs": false,
"declaration": false,
"declarationDir": null,
"declarationMap": false,
"diagnostics": false,
"disableSizeLimit": false,
"downlevelIteration": false,
"emitBOM": false,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"extendedDiagnostics": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"inlineSourceMap": true,
"inlineSources": true,
"isolatedModules": false,
"jsx": "preserve",
"jsxFactory": "React.createElement",
"keyofStringsOnly": false,
"lib": null,
"listEmittedFiles": false,
"listFiles": false,
"locale": null,
"mapRoot": null,
"maxNodeModuleJsDepth": 0,
"module": "commonjs",
"moduleResolution": "node",
"newLine": null,
"noEmit": false,
"noEmitHelpers": false,
// "noEmitOnError": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noLib": false,
"noResolve": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
//"noUnusedParameters": true,
"outDir": "dist",
"outFile": null,
"paths": {
"*": [
"node_modules",
"types"
]
},
"preserveConstEnums": true,
"preserveSymlinks": false,
"preserveWatchOutput": false,
"pretty": true,
"project": null,
"reactNamespace": null,
"removeComments": true,
"resolveJsonModule": false,
"rootDirs": null,
"skipLibCheck": true,
"sourceMap": false,
"sourceRoot": null,
//"strict": true,
"strictFunctionTypes": false,
//"strictPropertyInitialization": true,
//"strictNullChecks": true,
"stripInternal": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"target": "es6",
"traceResolution": false,
"types": null,
"typeRoots": null
},
"exclude": [
"**/*.spec.ts",
"dist",
"node_modules",
"types"
],
"include": [
"src"
]
}