- 5-tab navigation (Home/Clients/Collect/Tickets/Profile) - Inline styles throughout (17px min font, SafeAreaView) - Dashboard fixed to match real API shape - Ticket detail: 2 tabs (Details + Comments), always-visible comment input - Installation confirmation: GPS coordinate capture + client location update - User management screens (Admin only): list, create, detail + role/active toggle - Tasks folder replaces tickets folder - Remittance detail: inline styles - Record payment: prefill from client, live button text - Icon component with SVG icons - Color system: primary #0891B2
35 lines
569 B
JSON
35 lines
569 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"
|
|
]
|
|
}
|