From 93588783285edb1fa0cd011ffa9e87a102fb3e85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 20:49:02 +0000 Subject: [PATCH 1/2] chore(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 d2c2432..a6cd664 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,7 +28,7 @@ "@vitest/coverage-v8": "^4.1.7", "jsdom": "^29.1.1", "size-limit": "^11.0.0", - "typescript": "^5.9.3", + "typescript": "^6.0.3", "vite": "^8.0.14", "vitest": "^4.1.7" } @@ -3401,9 +3401,9 @@ "license": "MIT" }, "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 9caf840..2a36fe8 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "@vitest/coverage-v8": "^4.1.7", "jsdom": "^29.1.1", "size-limit": "^11.0.0", - "typescript": "^5.9.3", + "typescript": "^6.0.3", "vite": "^8.0.14", "vitest": "^4.1.7" }, From 08e92086fd967342cfea461433956f7b2fdfa171 Mon Sep 17 00:00:00 2001 From: Manas Srivastava Date: Thu, 4 Jun 2026 01:29:57 +0530 Subject: [PATCH 2/2] =?UTF-8?q?fix(ts):=20TypeScript=206.0=20compat=20?= =?UTF-8?q?=E2=80=94=20ignoreDeprecations=20for=20baseUrl=20+=20node=20typ?= =?UTF-8?q?es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TS 6.0.3 turns the `baseUrl` deprecation into a hard error (TS5101) and stops auto-including @types/node ambient globals for the src project, so test files using fs/path/__dirname fail (TS2591/TS2304). - add `"ignoreDeprecations": "6.0"` to silence the baseUrl deprecation - add `"types": ["node"]` so node module/global types resolve (vite/client stays covered by the /// reference in vite-env.d.ts) `npm run gate` (tsc --noEmit && build && vitest) green: 79 files, 1107 passed / 3 skipped. Co-Authored-By: Claude Opus 4.8 (1M context) --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 335e6fb..b8766c6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,8 @@ "noUnusedLocals": false, "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, + "ignoreDeprecations": "6.0", + "types": ["node"], "baseUrl": ".", "paths": { "@/*": ["src/*"]