-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 851 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 851 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
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"jsx": "react-jsx",
"baseUrl": ".",
"moduleSuffixes": [".ios", ".android", ""],
"paths": {
"@/*": ["./*"],
"@/shared/*": ["./shared/*"],
"@/features/*": ["./features/*"],
"@/sheets/*": ["./shared/lib/popup/sheets/*"],
"@/navigation/*": ["./navigation/*"],
"@/config/*": ["./config/*"],
"@/redux/*": ["./redux/*"],
"@/themes": ["./themes"],
"~/*": ["src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts", "nativewind-env.d.ts"],
"exclude": [
"sovran.money/**",
"coco/**",
"eNuts/**",
"heroui-native/**",
"coco-payment-ux/docs/references/**",
"coco-payment-ux/docs/node_modules/**",
"coco-payment-ux/docs/.vitepress/cache/**"
]
}