gadget/gadget-code/frontend/src/pages
Rob Colbert c14c3a235a fix: ACE editor integration crash — React 19 compat, Vite ?url pattern, Error Boundary
Root causes:
- react-ace v12 doesn't support React 19 (project uses ^19.2.5)
- Dynamic import(`ace-builds/src-noconflict/mode-${language}`) broken with Vite
  (template-literal dynamic imports can't be statically analyzed)
- No React Error Boundaries — ACE render crash whitescreens entire app
- ace-builds/react-ace duplicated in backend package.json

Fixes:
1. Upgrade react-ace ^12.0.0 → ^14.0.1 (React 19 support)
2. Upgrade ace-builds ^1.36.0 → ^1.43.6
3. Remove ACE deps from backend package.json (not used by Express)
4. Replace broken dynamic imports with Vite ?url + ace.config.setModuleUrl()
   pattern (canonical Vite solution per ace#4597)
5. Add ErrorBoundary component wrapping EditorPanel
6. Add vite.d.ts type declarations for ?url/?raw/?worker imports
7. Fix worker-typescript import (doesn't exist — TS uses worker-javascript)
8. Register 24 language modes, 4 workers, 1 theme, 2 extensions

Verified: TypeScript clean, production build passes, heartbeat worker intact.
2026-05-12 21:36:22 -04:00
..
ChatSessionView.tsx fix: ACE editor integration crash — React 19 compat, Vite ?url pattern, Error Boundary 2026-05-12 21:36:22 -04:00
DroneManager.tsx Define missing socket event types and enforce typed events in frontend build 2026-05-12 10:42:31 -04:00
Home.tsx Define missing socket event types and enforce typed events in frontend build 2026-05-12 10:42:31 -04:00
ProjectManager.tsx a pile of small fixes 2026-05-11 07:08:18 -04:00
Settings.tsx Fix User Settings persona display issue 2026-05-12 01:15:00 -04:00
SignIn.tsx Fix User Settings persona display issue 2026-05-12 01:15:00 -04:00