-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.18 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
32
33
34
35
36
{
"compilerOptions": {
"baseUrl": ".",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"outDir": "./dist",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2016",
"paths": {
"@/*": ["./src/*"],
"@/client": ["./src/client/index.ts"],
"@/config": ["./src/config/index.ts"],
"@/constants": ["./src/constants/index.ts"],
"@/controller": ["./src/controller/index.ts"],
"@/data": ["./src/data/index.ts"],
"@/helpers": ["./src/helpers/index.ts"],
"@/middleware": ["./src/middleware/index.ts"],
"@/model": ["./src/model/index.ts"],
"@/requestModel": ["./src/model/request/index.ts"],
"@/responseModel": ["./src/model/response/index.ts"],
"@/routes": ["./src/routes/index.ts"],
"@/services": ["./src/services/index.ts"],
"@/types": ["./src/types/index.ts"],
"@/utils": ["./src/utils/index.ts"],
"@/validation": ["./src/validation/index.ts"],
"@/view": ["./src/view/index.ts"]
}
},
"include": ["src/**/*"]
}