-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.extend.json
More file actions
30 lines (26 loc) · 766 Bytes
/
tsconfig.extend.json
File metadata and controls
30 lines (26 loc) · 766 Bytes
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
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@app": ["./App.tsx"],
"@actions": ["./store/actions"],
"@actions/*": ["./store/actions/*"],
"@reducers/*": ["./store/reducers/*"],
"@store": ["./store"],
"@store/*": ["./store/*"],
"@comp/*": ["./components/*"],
"@layout/*": ["./layout/*"],
"@pages/*": ["./pages/*"],
"@api": ["./krist/api"],
"@api/*": ["./krist/api/*"],
"@wallets": ["./krist/wallets"],
"@wallets/*": ["./krist/wallets/*"],
"@contacts": ["./krist/contacts"],
"@contacts/*": ["./krist/contacts/*"],
"@krist/*": ["./krist/*"],
"@global/*": ["./global/*"],
"@utils": ["./utils"],
"@utils/*": ["./utils/*"]
}
}
}