-
Notifications
You must be signed in to change notification settings - Fork 5
/
jsconfig.json
27 lines (27 loc) · 985 Bytes
/
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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/assets/*": ["./src/assets/*"],
"@/components/*": ["./src/components/*"],
"@/config/*": ["./src/config/*"],
"@/constants/*": ["./src/constants/*"],
"@/hooks/*": ["./src/hooks/*"],
"@/interfaces/*": ["./src/interfaces/*"],
"@/modules/*": ["./src/modules/*"],
"@/interfaces/*": ["./src/interfaces/*"],
"@/navigation/*": ["./src/navigation/*"],
"@/redux/*": ["./src/redux/*"],
"@/screens/*": ["./src/screens/*"],
"@/services/*": ["./src/services/*"],
"@/utils/*": ["./src/utils/*"],
// Usefull aliases:
"@/buttons/*": ["./src/components/buttons/*"],
"@/commonComponents/*": ["./src/components/common/*"],
"@/formatters/*": ["./src/components/formatters/*"],
"@/icons/*": ["./src/components/icons/*"],
"@/layout": ["./src/components/layout/index"],
"@/tokens/*": ["./src/components/tokens/*"],
}
},
}