mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
Major additions: - AIS Disruptions layer (spoofing/jamming events) - Cable Advisories layer (fault/maintenance markers) - Repair Ships layer - Country Labels layer - Flight Delays toggle in layer panel - Countries toggle in layer panel Data storage fixes: - setAisData now stores disruptions (was ignoring them) - setCableActivity now stores advisories and repair ships Also: - Import COUNTRY_LABELS from config - Add tooltips and click handlers for all new layers - Temporarily disable ML worker (dependency unavailable) https://claude.ai/code/session_01GTanC7R6aSQNsnijqJRUFz
29 lines
721 B
JSON
29 lines
721 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/workers/ml.worker.ts"]
|
|
}
|