From 95bc1005c61a49bdb44953571ac22a2399aa19e6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 25 Sep 2025 08:56:56 +0000 Subject: [PATCH 1/2] Initial plan From be4f6567eed378fb951e3cf83b2803cac8a79ab1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 25 Sep 2025 09:02:08 +0000 Subject: [PATCH 2/2] Fix TypeScript build by adding dom lib to tsconfig Co-authored-by: joe10832 <103850533+joe10832@users.noreply.github.com> --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 896e2bd..e898c38 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "ES2020", "module": "CommonJS", - "lib": ["ES2020"], + "lib": ["ES2020", "dom"], "declaration": true, "outDir": "./dist", "rootDir": "./",