-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
49 lines (49 loc) · 1.08 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
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"lib": [
"ES2020",
"ES2020.BigInt",
"ES2020.Promise",
"ES2020.String",
"ES2020.Symbol.WellKnown",
"dom"
],
"types": [
"node"
],
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"noUnusedParameters": true,
"removeComments": false,
"resolveJsonModule": true,
"sourceMap": true,
"inlineSources": true,
"strict": true,
"declarationMap": true,
"strictNullChecks": true,
"target": "ES2019",
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*"
],
"exclude": [
"lib",
"examples",
"node_modules"
]
}