A MakeCode Arcade project built with TypeScript and PXT modules.
-
Prerequisites: Install Node.js (LTS) and the MakeCode
pxtCLI (npm install -g pxt). VS Code recommended. -
Install deps: Use the workspace task or run:
pxt install
-
Build locally:
pxt build --local
-
Deploy/run locally:
pxt deploy --local
-
Clean artifacts:
pxt clean
-
VS Code tasks: You can also trigger
pxt install,pxt build,pxt deploy, andpxt cleanvia the built-in tasks (Terminal → Run Task) configured for this workspace.
- MakeCode Arcade (PXT): Game runtime and tooling.
- TypeScript: Primary language (
main.ts, modules inpxt_modules/). - PXT Modules: Reusable libraries like
arcade-sprite-util,arcade-story,arcade-block-objects, and others. - Assets: Images, tilemaps, and generated resources (
images.g.*,tilemap.g.*,assets/). - Build Artifacts: Output in
built/(e.g.,binary.js).