- Add web/ directory with TypeScript + Vite build tooling - Implement ReplayViewer class with Canvas-based grid rendering - Add play/pause, scrub, and speed controls with keyboard shortcuts - Implement fog of war perspective toggle per player - Add score overlay with player names, scores, and energy - Support loading replays from local file or URL - Add match info panel and event log display Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
508 B
JSON
20 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src"]
|
|
}
|