-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 879 Bytes
/
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
{
"compileOnSave": true,
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false,
"moduleResolution": "node",
"importHelpers": true,
"target": "ESNext",
"module": "CommonJS",
"lib": ["ESNext"],
"esModuleInterop": true,
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*", "src/controllers/.controller.ts", "data/**/*"]
}