sg-delivery-customer/tsconfig.json

28 lines
861 B
JSON

{
"extends": "@react-native/typescript-config",
"compilerOptions": {
"jsx": "react-native",
"types": ["jest"],
"baseUrl": ".",
"paths": {
"@components": ["./app/components"],
"@features/screens": ["./app/features/screens"],
"@features/screens/*": ["./app/features/screens/*"],
"@theme": ["./app/theme"],
"@theme/*": ["./app/theme/*"],
"@api": ["./app/api"],
"@api/*": ["./app/api/*"],
"@store": ["./app/store"],
"@store/*": ["./app/store/*"],
"@interfaces": ["./app/interfaces"],
"@interfaces/*": ["./app/interfaces/*"],
"@navigation": ["./app/navigation"],
"@navigation/*": ["./app/navigation/*"],
"@hooks": ["./app/hooks"],
"@hooks/*": ["./app/hooks/*"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules", "**/Pods"]
}