-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 969 Bytes
/
Copy pathtsconfig.json
File metadata and controls
31 lines (31 loc) · 969 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
31
{
"extends": "@react-native/typescript-config",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components": ["src/components"],
"@components/*": ["src/components/*"],
"@screens": ["src/screens"],
"@screens/*": ["src/screens/*"],
"@hooks": ["src/hooks"],
"@hooks/*": ["src/hooks/*"],
"@utils": ["src/utils"],
"@utils/*": ["src/utils/*"],
"@assets": ["src/assets"],
"@assets/*": ["src/assets/*"],
"@config": ["src/config"],
"@config/*": ["src/config/*"],
"@theme": ["src/theme"],
"@theme/*": ["src/theme/*"],
"@design-system": ["src/design-system"],
"@design-system/*": ["src/design-system/*"],
"@i18n": ["src/i18n"],
"@i18n/*": ["src/i18n/*"],
"@navigation": ["src/navigation"],
"@navigation/*": ["src/navigation/*"]
},
"types": ["jest"]
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules", "**/Pods"]
}