-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 748 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 748 Bytes
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
{
"compilerOptions": {
"target": "es2017",
"moduleResolution": "node",
"strict": true,
"baseUrl": ".",
"noEmit": true,
"removeComments": true,
"paths": {
"@db": ["src/db"],
"@routes/*": ["src/routes/*"],
"@controllers/*": ["src/controllers/*"],
"@middlewares/*": ["src/middlewares/*"],
"@validators/*": ["src/lib/validators/*"],
"@responses": ["src/lib/responses"],
"@lib/*": ["src/lib/*"]
},
"typeRoots": ["node_modules/@types", "src/@types"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["index.ts", "src/**/*"],
"exclude": ["node_modules", "src/db/**/*", "**/*.spec.ts", "**/*.test.ts"]
}