This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
80 lines (80 loc) · 2.1 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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"charset": "utf8",
"checkJs": false,
"declaration": true,
"declarationMap": true,
"diagnostics": false,
"disableSizeLimit": false,
"downlevelIteration": true,
"emitBOM": true,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"extendedDiagnostics": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"inlineSourceMap": false,
"inlineSources": false,
"isolatedModules": false,
"keyofStringsOnly": true,
"lib": [
"es2018",
"es2018.promise",
"es2018.regexp"
],
"listEmittedFiles": false,
"listFiles": false,
"locale": "en",
"maxNodeModuleJsDepth": 0,
"module": "commonjs",
"moduleResolution": "node",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": false,
"noImplicitUseStrict": false,
"noLib": false,
"noResolve": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"outDir": "./dist",
"preserveConstEnums": true,
"preserveSymlinks": false,
"preserveWatchOutput": false,
"removeComments": false,
"resolveJsonModule": false,
"rootDir": "./lib",
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"target": "es2018",
"traceResolution": false,
"typeRoots": [
"./lib/typings",
"./node_modules/@types"
]
},
"include": [
"lib/**/*.ts"
],
"exclude": [
"node_modules",
"lib/**/*.spec.ts",
"dist"
]
}