Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/excaliburjs/Excalibur. 🎮 Your friendly TypeScript 2D game engine for the web 🗡️ excaliburjs.com
excalibur excaliburjs game-development game-engine game-framework gamedev games html5-canvas typescript
Something went wrong. Try again.
649 B · 26 lines
123456789101112131415161718192021222324252627// .devcontainer/devcontainer.json{ "name": "Node.js & TypeScript (Playwright)", "image": "mcr.microsoft.com/playwright:v1.55.1-noble", // Install browsers "postCreateCommand": "npm i -g npm@11; npm install; npx playwright install", // Start virtual Xserver for tests and leave running "postStartCommand": "nohup bash -c 'Xvfb $DISPLAY -screen 0 1280x720x16 &'", "containerEnv": { "DISPLAY": ":99" }, "portsAttributes": { "51204": { "label": "Vitest UI" }, "5173": { "label": "Vite Dev Server" }, "6006": { "label": "Storybook" }, "3000": { "label": "Docs Site" } }}