Files
wizwar6e/packages/web/src/main.ts
T
Eric WagonerandClaude Fable 5 34ede9c44c Scaffold monorepo: engine, server, and web packages
npm workspaces with three TypeScript packages: @wizwar/engine (pure
game logic), @wizwar/server (Node websocket authority), @wizwar/web
(Svelte 5 + Vite client). Server handshake and client build verified.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-15 18:20:16 -04:00

7 lines
155 B
TypeScript

import { mount } from "svelte";
import App from "./App.svelte";
const app = mount(App, { target: document.getElementById("app")! });
export default app;