-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsconfig.json
29 lines (29 loc) · 1.16 KB
/
jsconfig.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
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist",
"paths": {
"@config/*": ["./config/*"],
"@config": ["./config"],
"@sb-constants": ["./config/storybook/constants.js"],
"@client/*": ["./src/client/*"],
"@server/*": ["./src/server/*"],
"@common/*": ["./src/common/*"],
"@utils/*": ["./src/common/utils/*"],
"@utils": ["./src/common/utils"],
"@services/*": ["./src/common/services/*"],
"@services": ["./src/common/services"],
"@api/*": ["./src/client/api/*"],
"@api": ["./src/client/api"],
"@assets/*": ["./src/assets/*"],
"@components/*": ["./src/client/components/*"],
"@pages/*": ["./src/client/components/pages/*"],
"@reusables/*": ["./src/client/reusables/*"],
"@slices/*": ["./src/client/store/slices/*"],
"@test-utils": ["./config/test/jest/test-utils"],
"@test-utils/*": ["./config/test/jest/test-utils/*"]
}
},
"include": ["src/**/*", "config/**/*/*"],
"exclude": ["node_modules", "dist/**/*"]
}