From 82695a709895a908e77e94ad59d41e5fd100937d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 1 Jan 2026 02:44:57 +0000 Subject: [PATCH 1/2] Initial plan From 2d036acfe3cad4dc4506b4ad7db6610e5bc6d47b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 1 Jan 2026 02:48:28 +0000 Subject: [PATCH 2/2] Fix ES module export by changing tsconfig module to ESNext Co-authored-by: thegdsks <39922405+thegdsks@users.noreply.github.com> --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 117f8d7..be676c1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "target": "ESNext", - "module": "CommonJS", + "module": "ESNext", "moduleResolution": "Node", "strict": true, "esModuleInterop": true,