forked from kubeshop/monokle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaths.json
35 lines (35 loc) · 1.11 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
{
"compilerOptions": {
"esModuleInterop": true,
"paths": {
"@components/*": ["src/components/*"],
"@components": ["src/components/"],
"@constants/*": ["src/constants/*"],
"@constants": ["src/constants/"],
"@atoms/*": ["src/components/atoms/*"],
"@atoms": ["src/components/atoms/"],
"@organisms/*": ["src/components/organisms/*"],
"@organisms": ["src/components/organisms/"],
"@molecules/*": ["src/components/molecules/*"],
"@molecules": ["src/components/molecules/"],
"@hooks/*": ["src/hooks/*"],
"@hooks": ["src/hooks"],
"@models/*": ["src/models/*"],
"@models": ["src/models/"],
"@redux/*": ["src/redux/*"],
"@redux": ["src/redux/"],
"@actions/*": ["src/actions/*"],
"@actions": ["src/actions/"],
"@styles/*": ["src/styles/*"],
"@styles": ["src/styles/"],
"@assets/*": ["src/assets/*"],
"@assets": ["src/assets/"],
"@utils/*": ["src/utils/*"],
"@utils": ["src/utils/"],
"@src/*": ["src/*"],
"@src": ["src/"],
"@root/*": ["./*"],
"@root": ["./"]
}
}
}