forked from kubeshop/testkube-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.json
44 lines (44 loc) · 1.51 KB
/
paths.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
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@styles/*": ["src/styles/*"],
"@src/*": ["src/*"],
"@src": ["src/"],
"@root/*": ["./*"],
"@root": ["./"],
"@atoms": ["src/components/atoms/"],
"@atoms/*": ["src/components/atoms/*"],
"@custom-antd": ["src/components/custom-antd"],
"@custom-antd/*": ["src/components/custom-antd/*"],
"@molecules": ["src/components/molecules/"],
"@molecules/*": ["src/components/molecules/*"],
"@organisms": ["src/components/organisms/"],
"@organisms/*": ["src/components/organisms/*"],
"@pages": ["src/components/pages/"],
"@pages/*": ["src/components/pages/*"],
"@wizards": ["src/components/wizards/"],
"@wizards/*": ["src/components/wizards/*"],
"@services": ["src/services/"],
"@services/*": ["src/services/*"],
"@assets": ["src/assets/images/"],
"@assets/*": ["src/assets/images/*"],
"@contexts": ["src/contexts/"],
"@contexts/*": ["src/contexts/*"],
"@utils": ["src/utils/"],
"@models": ["src/models/"],
"@models/*": ["src/models/*"],
"@utils/*": ["src/utils/*"],
"@types": ["src/types/"],
"@types/*": ["src/types/*"],
"@constants": ["src/constants/"],
"@constants/*": ["src/constants/*"],
"@hooks": ["src/hooks/"],
"@hooks/*": ["src/hooks/*"],
"@features": ["src/features/"],
"@features/*": ["src/features/*"],
"@redux": ["src/redux/"],
"@redux/*": ["src/redux/*"]
}
}
}