import "./style.css"; import { GameApp } from "./game/GameApp"; const appRoot = document.querySelector("#app"); if (!appRoot) { throw new Error("Missing #app root element"); } const game = new GameApp(appRoot); game.start();