-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.01 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
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist/",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es6" ],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"noUnusedLocals": true,
"pretty": true,
"removeComments": false,
"sourceMap": false,
"suppressImplicitAnyIndexErrors": true,
"target": "es6",
"typeRoots" : [
"./node_modules/@types",
"./typings"
],
"paths": {
"@src/*": ["src/*"],
"@app/*": ["src/app/*"],
"@api/*": ["src/app/api/*"],
"@utils/*": ["src/utils/*"],
"@database/*": ["src/database/*"],
"@constants/*": ["src/app/constants/*"],
"@validators/*": ["src/app/validators/*"],
"@middlewares/*": ["src/app/middlewares/*"],
}
},
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}