-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
31 lines (31 loc) · 1012 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
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"module": "esnext",
"lib": ["esnext", "dom", "webworker"],
"jsx": "preserve",
"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"],
"@apis/*": ["src/apis/*"],
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@config/*": ["src/config/*"],
"@hooks/*": ["src/hooks/*"],
"@layouts/*": ["src/layouts/*"],
"@locales/*": ["src/locales/*"],
"@stores/*": ["src/stores/*"],
"@styles/*": ["src/styles/*"],
"@utils/*": ["src/utils/*"]
},
"types": ["vite/client"]
},
"exclude": ["node_modules", "dist"],
"include": ["src/**/*", "typings/*", "vite.config.ts"]
}