native_convex_CRM/tsconfig.json
2026-07-16 11:56:16 +05:30

34 lines
1.1 KiB
JSON

{
"extends": "@react-native/typescript-config",
"compilerOptions": {
"jsx": "react-native",
"types": ["jest"],
"baseUrl": ".",
"paths": {
"@components": ["./app/components"],
"@features": ["./app/features"],
"@features/*": ["./app/features/*"],
"@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/*"],
"@utils": ["./app/utils"],
"@utils/*": ["./app/utils/*"],
"@services": ["./app/services"],
"@services/*": ["./app/services/*"],
"@mock-data": ["./app/mock-data/index.ts"],
"@mock-data/": ["./app/mock-data"],
"@mock-data/*": ["./app/mock-data/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts"],
"exclude": ["**/node_modules", "**/Pods"]
}