-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
51 lines (50 loc) · 1.37 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
45
46
47
48
49
50
51
{
"compilerOptions": {
"target": "es6",
"lib": ["ES2018", "ESNext.AsyncIterable"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"rootDir": "./src",
"moduleResolution": "node",
"typeRoots": ["typings"],
"outDir": "./dist",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"importHelpers": true,
"strict": true,
"alwaysStrict": false,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"strictPropertyInitialization": false,
"paths": {
"@controllers/*": ["./src/controllers/*"],
"@models/*": ["./src/models/*"],
"@routes/*": ["./src/routes/*"],
"@helpers/*": ["./src/helpers/*"],
"@configs/*": ["./src/configs/*"],
"@utils/*": ["./src/utils/*"],
"@lib/*": ["./src/lib/*"],
"@enums/*": ["./src/enums/*"],
"@services/*": ["./src/services/*"],
"@core/*": ["./src/core/*"],
"@dto/*": ["./src/dto/*"],
"@decorators/*": ["./src/decorators/*"],
"@exceptions/*": ["./src/exceptions/*"],
"@middlewares/*": ["./src/middlewares/*"],
}
},
"exclude": [
"node_modules",
"dist",
"themes",
"plugins",
"assets",
"views",
"typings"
]
}