-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.paths.json
45 lines (44 loc) · 1.36 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
36
37
38
39
40
41
42
43
44
45
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@localization/*": ["./localization/*"],
"@utils/*": ["./utils/*"],
"@store/*": ["./store/*"],
"@store": ["./store"],
"@common/*": ["./common/*"],
"@services/*": ["./services/*"],
"@components": ["./components"],
"@components/*": ["./components/*"],
"@auth-components/*": ["./auth-components/*"],
"@shared-components/*": ["./shared-components/*"],
"@routing/*": ["./routing/*"],
"@routing": ["./routing"],
"@contexts": ["./contexts"],
"@contexts/*": ["./contexts/*"],
"@hooks/*": ["./hooks/*"],
"@hooks": ["./hooks"],
"@sounds/*": ["./assets/sounds/*"],
"@containers/*": ["./containers/*"],
"@icons/*": ["./assets/icons/*"],
"@flags/*": ["./assets/flags/*"],
"@assets/*": ["./assets/*"],
"@pages/*": ["./pages/*"]
}
}
}
/*
"@app/*": ["./*"],
"icons/*": ["./assets/icons/*"],
"@store/*": ["./store/*"],
"@store": ["./store"],
"@services/*": ["./services/*"],
"@containers/*": ["./containers/*"],
"@sounds/*": ["./assets/sounds/*"],
"@utils/*": ["./utils/*"],
"@hooks/*": ["./hooks/*"],
"@routing/*": ["./routing/*"],
"@contexts": ["./contexts"],
"@common/*": ["./common/*"],
"@components": ["./components"]
*/