-
Notifications
You must be signed in to change notification settings - Fork 135
/
tsconfig.paths.json
35 lines (35 loc) · 1.11 KB
/
tsconfig.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"],
"@redux/*": ["src/redux/*"],
"@redux": ["src/redux/"],
"@actions/*": ["src/actions/*"],
"@actions": ["src/actions/"],
"@assets/*": ["src/assets/*"],
"@assets": ["src/assets/"],
"@utils/*": ["src/utils/*"],
"@utils": ["src/utils/"],
"@shared": ["src/shared/"],
"@shared/*": ["src/shared/*"],
"@editor": ["src/editor/"],
"@editor/*": ["src/editor/*"],
"@src/*": ["src/*"],
"@src": ["src/"],
"@root/*": ["./*"],
"@root": ["./"]
}
}
}