From ea2d3acb8e22b70fe5f72c22b4c5199f29c25ae6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 May 2026 03:11:39 +0000 Subject: [PATCH 1/3] deps-dev(deps-dev): bump typescript from 5.9.3 to 6.0.3 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index dce4fdf..57c6789 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "jiti": "^2.5.1", "prettier": "^3.6.2", "tsx": "^4.20.5", - "typescript": "^5.9.2", + "typescript": "^6.0.3", "typescript-eslint": "^8.40.0" } }, @@ -2979,9 +2979,9 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", "dev": true, "license": "Apache-2.0", "bin": { diff --git a/package.json b/package.json index 8b6d1a3..c5343c5 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "jiti": "^2.5.1", "prettier": "^3.6.2", "tsx": "^4.20.5", - "typescript": "^5.9.2", + "typescript": "^6.0.3", "typescript-eslint": "^8.40.0" } } From 5b86a297de176d2a418bd4f9d6b6f44cf1790413 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 22 May 2026 09:28:58 +0000 Subject: [PATCH 2/3] Fix TypeScript 6 CI failure in tsconfig --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index bb67bf2..af42e59 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,8 +3,10 @@ "target": "ES2022", "module": "ESNext", "moduleResolution": "Node", + "ignoreDeprecations": "6.0", "allowSyntheticDefaultImports": true, "esModuleInterop": true, + "types": ["node"], "allowJs": true, "strict": true, "skipLibCheck": true, From 2ba08e8c1a8628b0add896e874414b363c905a25 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 22 May 2026 09:34:33 +0000 Subject: [PATCH 3/3] Migrate to moduleResolution: bundler (remove deprecation workaround) --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index af42e59..fe4614a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,8 +2,7 @@ "compilerOptions": { "target": "ES2022", "module": "ESNext", - "moduleResolution": "Node", - "ignoreDeprecations": "6.0", + "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "esModuleInterop": true, "types": ["node"],