-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 777 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 777 Bytes
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
{
"compilerOptions": {
"moduleResolution": "node",
"target": "ES2019",
"module": "commonjs",
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
//"noImplicitAny": false,
//"strictNullChecks": false,
//"noImplicitThis": true,
//"noUnusedLocals": false,
//"noUnusedParameters": false,
//"noImplicitReturns": true,
//"noFallthroughCasesInSwitch": false,
//"strictPropertyInitialization": false,
"sourceMap": true,
"lib": ["ESNext"],
"outDir": "dist",
"declarationDir": "dist"
},
"exclude": ["node_modules", "dist"]
// "exclude": ["node_modules", "**/*.spec.ts"]
}