-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
116 lines (116 loc) · 3.75 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"compilerOptions": {
// * Paths
"outDir": "${configDir}/build",
"rootDir": "${configDir}/src",
// * Modules
"allowArbitraryExtensions": false,
"allowImportingTsExtensions": false,
"allowUmdGlobalAccess": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noResolve": false,
"resolveJsonModule": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
// * JavaScript Support
"allowJs": true,
"checkJs": true,
"maxNodeModuleJsDepth": 0,
// * Interop Constraints
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"preserveSymlinks": false,
"verbatimModuleSyntax": false,
// * Type Checking
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
// * Watch and Build Modes
"assumeChangesOnlyAffectDirectDependencies": false,
// * Backwards Compatability
"keyofStringsOnly": false,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
// * Projects
"composite": false,
"disableReferencedProjectLoad": false,
"disableSolutionSearching": false,
"disableSourceOfProjectReferenceRedirect": false,
"incremental": false,
// * Emit
"declaration": false,
"declarationMap": false,
"downlevelIteration": true,
"emitBOM": true,
"emitDeclarationOnly": false,
"importHelpers": false,
"importsNotUsedAsValues": "remove",
"inlineSourceMap": true,
"inlineSources": true,
"newLine": "LF",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"preserveConstEnums": false,
"preserveValueImports": false,
"removeComments": false,
"sourceMap": false,
"stripInternal": true,
// * Compiler Diagnostics
"diagnostics": false,
"explainFiles": false,
"extendedDiagnostics": false,
"generateCpuProfile": "profile.cpuprofile",
"listEmittedFiles": false,
"listFiles": false,
"traceResolution": false,
// * Editor Support
"disableSizeLimit": true,
"plugins": [],
// * Language and Environment
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"jsx": "preserve",
"jsxImportSource": "react",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"moduleDetection": "auto",
"noLib": false,
"target": "ESNext",
"useDefineForClassFields": true,
// * Output Formatting
"noErrorTruncation": true,
"preserveWatchOutput": false,
"pretty": true,
// * Completeness
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"include": [
"${configDir}/src"
],
}