-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.path.json
34 lines (34 loc) · 1.15 KB
/
tsconfig.path.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
{
"compilerOptions": {
"paths": {
"@atoms": ["src/components/atoms"],
"@atoms/*": ["src/components/atoms/*"],
"@icons": ["src/components/atoms/Icons"],
"@icons/*": ["src/components/atoms/Icons/*"],
"@molecules": ["src/components/molecules"],
"@molecules/*": ["src/components/molecules/*"],
"@organisms": ["src/components/organisms"],
"@organisms/*": ["src/components/organisms/*"],
"@templates": ["src/components/templates"],
"@templates/*": ["src/components/templates/*"],
"@pages": ["src/pages"],
"@pages/*": ["src/pages/*"],
"@constants": ["src/constants"],
"@constants/*": ["src/constants/*"],
"@helpers": ["src/helpers"],
"@helpers/*": ["src/helpers/*"],
"@hooks": ["src/hooks"],
"@hooks/*": ["src/hooks/*"],
"@types": ["src/types"],
"@types/*": ["src/types/*"],
"@styles": ["src/styles"],
"@styles/*": ["src/styles/*"],
"@contexts": ["src/contexts"],
"@contexts/*": ["src/contexts/*"],
"@common": ["src/common"],
"@common/*": ["src/common/*"]
},
"jsx": "preserve",
"isolatedModules": false
}
}