-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 1.06 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
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"lib": ["dom", "dom.iterable", "ESNext"],
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"baseUrl": "./",
"paths": {
"@controllers/*": ["src/api/controllers/*"],
"@errors/*": ["src/api/errors/*"],
"@interfaces/*": ["src/api/interfaces/*"],
"@middleware/*": ["src/api/middleware/*"],
"@routes/*": ["src/api/routes/*"],
"@services/*": ["src/api/services/*"],
"@utils/*": ["src/api/utils/*"],
"@helpers/*": ["src/api/helpers/*"]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": ["jest"]
},
"include": ["src/**/*.ts", "src/**/*.json", ".env"],
"exclude": ["node_modules"]
}