From 85e096f6aa271dc3032bdf016ef7e4ba89f1c7f1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 20:36:39 +0000 Subject: [PATCH 1/3] Initial plan From dec952e51a391e470e70795f99b46f8bbea058df Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 20:39:04 +0000 Subject: [PATCH 2/3] Fix CI build: use moduleResolution bundler and exclude test.ts from app build --- tsconfig.app.json | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 8426ad9..8e1d7ce 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -5,5 +5,5 @@ "types": [] }, "include": ["src/**/*.ts"], - "exclude": ["src/**/*.spec.ts"] + "exclude": ["src/**/*.spec.ts", "src/test.ts"] } diff --git a/tsconfig.json b/tsconfig.json index 076c633..0641f84 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,7 @@ "sourceMap": true, "declaration": false, "experimentalDecorators": true, - "moduleResolution": "node", + "moduleResolution": "bundler", "importHelpers": true, "target": "ES2022", "module": "ES2022", From 928e0a8e27e79871e36595cf834115ceb9032828 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 20:57:34 +0000 Subject: [PATCH 3/3] Revert tsconfig.app.json: moduleResolution bundler alone fixes all TS errors --- tsconfig.app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 8e1d7ce..8426ad9 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -5,5 +5,5 @@ "types": [] }, "include": ["src/**/*.ts"], - "exclude": ["src/**/*.spec.ts", "src/test.ts"] + "exclude": ["src/**/*.spec.ts"] }