From 3117ebcd00c21cb102a4c1afe2653120cccb2af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Sun, 24 Jul 2022 13:22:29 +0100 Subject: [PATCH] fix: removed need for require hack --- examples/web/index.ts | 7 +++++++ examples/web/package.json | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/web/index.ts b/examples/web/index.ts index e4bff1fc..dc36af2c 100644 --- a/examples/web/index.ts +++ b/examples/web/index.ts @@ -3,6 +3,8 @@ import { startApp } from "./react/app"; import { default as _wasm, GameBoy, PadKey, PpuMode } from "./lib/boytacean.js"; import info from "./package.json"; +declare const require: any; + const PIXEL_UNSET_COLOR = 0x1b1a17ff; const LOGIC_HZ = 600; @@ -48,6 +50,11 @@ enum PixelFormat { RGBA = 4 } +/** + * Top level class that controls the emulator behaviour + * and "joins" all the elements together to bring input/output + * of the associated machine. + */ class Emulator { /** * The Game Boy engine (probably coming from WASM) that diff --git a/examples/web/package.json b/examples/web/package.json index 4adc74a1..a653782f 100644 --- a/examples/web/package.json +++ b/examples/web/package.json @@ -17,7 +17,6 @@ "source": "index.ts", "devDependencies": { "@parcel/transformer-typescript-tsc": "^2.6.2", - "@types/node": "^18.0.6", "@types/react": "^18.0.15", "@types/react-dom": "^18.0.6", "parcel": "^2.6.2", -- GitLab