-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (43 loc) · 1.17 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
{
"extends": "@tsconfig/node20/tsconfig.json",
"ts-node": {
"transpileOnly": true,
"files": true,
"compilerOptions": {}
},
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "Node",
"lib": ["ES2022"],
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"paths": {
"#app.module": ["src/app.module"],
"#nestjs-common/*": ["nestjs-common/src/*"],
"#common/*": ["src/common/*"],
"#file/*": ["src/file/*"],
"#health/*": ["src/health/*"],
"#user/*": ["src/user/*"]
}
},
"include": ["src/**/*", "nestjs-common/**/*", "test/**/*"],
"exclude": ["dist/**"]
}