- 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>
33 lines
893 B
JSON
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" }]
|
|
}
|