-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 871 Bytes
/
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
{
"compilerOptions": {
"typeRoots": ["./src/types", "./node_modules/@types","./src/@types/external"],
"target": "es6",
"module": "commonjs",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"strict": true,
"baseUrl": "./src",
"sourceMap": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"types/*": ["@types/*"],
"controllers/*": ["controllers/*"],
"models/*": ["models/*"],
"routes/*": ["routes/*"],
"dtos/*": ["dtos/*"],
"services/*": ["services/*"],
"interfaces/*": ["interfaces/*"],
"repositories/*": ["repositories/*"],
"mapper/*": ["mapper/*"],
"secret":["src/config/secret"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"],
}