-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
33 lines (33 loc) · 1.1 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
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"lib": ["esnext"],
"baseUrl": ".",
"paths": {
"@uniqs/apis": ["../apis/src"],
"@uniqs/backend": ["../backend/src"],
"@uniqs/candidate-dashboard": ["../candidate-dashboard/src"],
"@uniqs/dashboard": ["../dashboard/src"],
"@uniqs/config": ["../config/src"],
"@uniqs/ui": ["../ui/src"],
"@uniqs/utils": ["../utils/src"],
"@constants/*": ["src/constants/*"],
"@controllers/*": ["src/controllers/*"],
"@decorators/*": ["src/decorators/*"],
"@dtos/*": ["src/dtos/*"],
"@entities/*": ["src/entities/*"],
"@filters/*": ["src/filters/*"],
"@gateways/*": ["src/gateways/*"],
"@guards/*": ["src/guards/*"],
"@interceptors/*": ["src/interceptors/*"],
"@interfaces/*": ["src/interfaces/*"],
"@middlewares/*": ["src/middlewares/*"],
"@modules/*": ["src/modules/*"],
"@pipes/*": ["src/pipes/*"],
"@services/*": ["src/services/*"],
"@utils/*": ["src/utils/*"],
"@test/*": ["test/*"]
}
},
"include": ["src", "typings", "test"]
}