Files
Aurora release bot 8a5971c97d feat(playground): nameplate portrait chips + CF Worker WS hub + online HUD
- Replace floating PNG portraits with portrait-chip nameplates above heads
  (NPCs, player, bots, remote players). Voxel body becomes the character;
  PNG identifies them at a glance without the chimera-y face hover.
- Add Cloudflare Workers + Durable Objects port of scripts/playground-ws.mjs
  in playground-ws-worker/ — same wire protocol so client connects unchanged.
  Includes /stats endpoint with online + byWorld + peakToday.
- Add PlaygroundOnlineChip HUD component that polls /stats and renders a
  live 'N agents online' badge. Hidden when VITE_PLAYGROUND_STATS_URL unset.
- Drop unused Billboard / useTexture imports from world-3d.

Build: pnpm build clean. No new deps. Worker deps install separately.
2026-05-03 08:45:46 -04:00

16 lines
334 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022"],
"types": ["@cloudflare/workers-types"],
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true,
"isolatedModules": true
},
"include": ["src/**/*.ts"]
}