-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtsconfig.paths.json
41 lines (40 loc) · 1.03 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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"~/*": [
"./src/*"
],
"@earn/*": [
"./src/apps/earn/src/*"
],
"@devCenter/*": [
"./src/apps/dev-center/src/*"
],
"@gamificationAdmin/*": [
"./src/apps/gamification-admin/src/*"
],
"@learn/*": [
"./src/apps/learn/src/*"
],
"@platform/*": [
"./src/apps/platform/src/*"
],
"@talentSearch/*": [
"./src/apps/talent-search/src/*"
],
"@profiles/*": [
"./src/apps/profiles/src/*"
],
"@wallet/*": [
"./src/apps/wallet/src/*"
],
"@walletAdmin/*": [
"./src/apps/wallet-admin/src/*"
],
"@libs/ui/styles/*": [
"./src/libs/ui/lib/styles/*"
]
}
}
}