-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
122 lines (98 loc) · 3.15 KB
/
tsconfig.json
File metadata and controls
122 lines (98 loc) · 3.15 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base Template",
"exclude": ["node_modules"],
"include": ["src/**/*", "types/**/*"],
"compilerOptions": {
"allowUnreachableCode": true,
"allowUnusedLabels" : false,
"strict": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny":false,
"noImplicitOverride":true,
"noImplicitReturns":false,
"noPropertyAccessFromIndexSignature":true,
"noUncheckedIndexedAccess":false,
"noUnusedLocals":false,
"noUnusedParameters":false,
"strictBindCallApply":false,
"strictFunctionTypes":true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"module":"CommonJS",
"allowUmdGlobalAccess":false,
"baseUrl":"./",
"moduleResolution" : "node",
"noResolve": false,
"paths": {},
"resolveJsonModule":true,
"rootDir":"./",
"types": ["jest", "node"],
"declaration": true,
"declarationMap": false,
"declarationDir": "dist/types",
"downlevelIteration": false,
"emitBOM":false,
"emitDeclarationOnly": false,
"importHelpers":false,
"importsNotUsedAsValues":"remove",
"inlineSourceMap": false,
"inlineSources": false,
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"outDir": "dist/js",
"preserveConstEnums": false,
"removeComments": false,
"stripInternal": false,
"sourceMap": false,
"allowJs": true,
"checkJs": true,
"maxNodeModuleJsDepth": 0,
"disableSizeLimit": false,
"plugins": [
{ "name": "typescript-styled-plugin" },
{ "name": "typescript-eslint-language-service" }
],
"allowSyntheticDefaultImports": true,
"esModuleInterop":true,
"forceConsistentCasingInFileNames":true,
"isolatedModules": false,
"preserveSymlinks": false,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"jsx": "react",
"jsxFactory": "React.createElement",
"jsxFragmentFactory": "React.Fragment",
"lib": [
"DOM",
"ESNext"
],
"noLib": false,
"target": "ES6",
"useDefineForClassFields": false,
"diagnostics": true,
"explainFiles": false,
"extendedDiagnostics": false,
"generateCpuProfile": "profile.cpuprofile",
"listEmittedFiles": false,
"listFiles": false,
"traceResolution": false,
"composite": true,
"disableReferencedProjectLoad": false,
"disableSolutionSearching": false,
"disableSourceOfProjectReferenceRedirect":false,
"incremental": true,
"tsBuildInfoFile": "dist/base/tsbuildinfo",
"noErrorTruncation": false,
"preserveWatchOutput": false,
"pretty": true,
"skipLibCheck": true,
"assumeChangesOnlyAffectDirectDependencies": true
}
}