-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtsconfig.json
42 lines (42 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
{
"compilerOptions": {
"baseUrl": "src",
"outDir": "dist",
"target": "ESNext",
"module": "CommonJS",
"moduleResolution": "Node",
"typeRoots": ["node_modules/@types/"],
"paths": {
"*": ["node_modules/"],
"@/*": ["*"],
"@configs/*": ["configs/*"],
"@dtos/*": ["dtos/*"],
"@controllers/*": ["controllers/*"],
"@interfaces/*": ["interfaces/*"],
"@helpers/*": ["helpers/*"],
"@libs/*": ["libs/*"],
"@middlewares/*": ["middlewares/*"],
"@models/*": ["models/*"],
"@routes/*": ["routes/*"],
"@services/*": ["services/*"],
"@modules/*": ["modules/*"],
"@entities/*": ["entities/*"],
"@providers/*": ["providers/*"]
},
"strict": true,
"esModuleInterop": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowUmdGlobalAccess": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"importHelpers": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitThis": false
},
"include": ["src/**/*.ts"],
"exclude": ["dist", "node_modules"]
}