erp-transportistas-frontend-v2/tsconfig.json
Adrian Flores Cortes efc8cef4cd feat: Initial frontend structure for ERP Transportistas
- React 18.x with Vite configuration
- TailwindCSS with transport-themed colors
- Leaflet for map integration
- TypeScript setup with path aliases

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 09:51:26 -06:00

33 lines
893 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"],
"@shared/*": ["shared/*"],
"@components/*": ["shared/components/*"],
"@hooks/*": ["shared/hooks/*"],
"@stores/*": ["shared/stores/*"],
"@services/*": ["services/*"],
"@features/*": ["features/*"],
"@pages/*": ["pages/*"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}