- Client detail: Subscription/Invoices/Payments tabs now fully functional - Payments: proper list with today's total + live search prefill from client - Record payment: debounced live search, reference required for non-cash - Remittances: detail screen with included payments breakdown - Tickets: status filter chips + create button, new ticket with categories - Installations: tab now visible with list + confirm flow - Fix: remove duplicate @react-navigation/elements causing Metro asset error - Fix: metro.config.js asset resolution from node_modules
24 lines
494 B
JSON
24 lines
494 B
JSON
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@/components/*": ["./components/*"],
|
|
"@/stores/*": ["./stores/*"],
|
|
"@/services/*": ["./services/*"],
|
|
"@/hooks/*": ["./hooks/*"],
|
|
"@/constants/*": ["./constants/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"nativewind-env.d.ts",
|
|
"types/**/*.d.ts",
|
|
".expo/types/**/*.d.ts",
|
|
"expo-env.d.ts"
|
|
]
|
|
}
|