-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
31 lines (31 loc) · 952 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
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "Node",
"target": "ES2018",
"outDir": "./dist",
"rootDir": "src",
"baseUrl": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"paths": {
"@services": ["./src/services"],
"@models/*": ["./src/models/*"],
"@controllers/*": ["./src/controllers/*"],
"@middlewares": ["./src/middlewares"],
"@utils/*": ["./src/utils/*"],
"@config": ["./src/config"],
"@types": ["./src/types"],
"@logger": ["./src/logger"],
"@routes": ["./src/routes"],
"@env": ["./src/env"],
"@lib/*": ["./src/lib/*"],
"@websearch/*": ["./src/lib/websearch/*"]
},
"allowJs": true
},
"exclude": ["node_modules", "dist", "vite.config.ts"]
}