-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 1020 Bytes
/
tsconfig.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
{
"compilerOptions": {
"noEmit": true,
"lib": ["dom", "esnext"],
"jsx": "react-native",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"baseUrl": "src",
"paths": {
"@secrets": ["secrets"],
"@backend": ["backend"],
"@backend/*": ["backend/*"],
"@components": ["components"],
"@components/*": ["components/*"],
"@constants": ["constants"],
"@constants/*": ["constants/*"],
"@navigation": ["navigation"],
"@navigation/*": ["navigation/*"],
"@pages": ["pages"],
"@pages/*": ["pages/*"],
"@reducers": ["reducers"],
"@reducers/*": ["reducers/*"],
"@screens": ["screens"],
"@screens/*": ["screens/*"],
"@services": ["services"],
"@services/*": ["services/*"],
"@argon": ["../libs/argon"],
"@argon/*": ["../libs/argon/*"],
"@galio": ["../libs/galio"],
"@galio/*": ["../libs/galio/*"]
}
}
}