-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathtsconfig.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es6"],
"allowJs": true,
"outDir": "./dist",
"rootDir": "./src",
"removeComments": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"typeRoots": [
"./node_modules/@types",
"./src/@types"
],
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@app/*": ["./src/app/*"],
"@controllers/*": ["./src/app/controllers/*"],
"@database/*": ["./database/*"],
"@libs/*": ["./src/libs/*"],
"@middlewares/*": ["./src/app/middlewares/*"],
"@models/*": ["./src/app/models/*"],
"@repositories/*": ["./src/app/repositories/*"],
"@routes/*": ["./src/app/routes/*"],
"@serializers/*": ["./src/app/serializers/*"],
"@services/*": ["./src/app/services/*"],
"@utils/*": ["./utils/*"]
}
},
"include": [
"src/**/*"
]
}