-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
42 lines (41 loc) · 1.01 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
{
// "extends": "@tsconfig/node12/tsconfig.json",
"compilerOptions": {
// "rootDir": "src",
// "outDir": "./dist",
// "baseUrl": "./",
// "lib": [
// "es2017",
// "es2019",
// "es2020.promise",
// "es2020.bigint",
// "es2020.string",
// "es2020.symbol.wellknown"
// ],
//"typeRoots" : ["./typings"],
// "types": [
// "jest",
// "node"
// ],
"module": "commonjs",
"moduleResolution": "node",
"target": "es2017",
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": false,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
"newLine": "LF",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"removeComments": false,
"resolveJsonModule": true,
"sourceMap": true,
},
"exclude": ["node_modules", "dist"]
}