-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
37 lines (35 loc) · 965 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
31
32
33
34
35
{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"baseUrl": ".",
"paths": {
"src": ["src"],
"src/*": ["src/*"],
"controllers": ["src/controllers/index.ts"],
"controllers/*": ["src/controllers/*"],
"services": ["src/services/index.ts"],
"services/*": ["src/services/*"],
"routes": ["src/routes/index.ts"],
"routes/*": ["src/routes/*"],
"models": ["src/models/index.ts"],
"models/*": ["src/models/*"],
"schemas": ["src/schemas/index.ts"],
"schemas/*": ["src/schemas/*"],
"db": ["src/db/index.ts"],
"db/*": ["src/db/*"],
"config": ["src/environment"]
},
"typeRoots": [
"node_modules/@types"
],
"skipLibCheck": true,
"esModuleInterop": true
}
}