From da8d88f0090895e0bac7c7e947198e1415c509bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 06:57:48 +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.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 03dc3c3be..453b827c2 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "eslint-plugin-react-refresh": "0.4.3", "husky": "8.0.3", "prettier": "3.5.3", - "typescript": "5.9.3", + "typescript": "6.0.3", "vite": "8.0.16", "vite-tsconfig-paths": "6.1.1", "vitest": "4.1.5" diff --git a/yarn.lock b/yarn.lock index 88f910869..eda11f3ff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13802,10 +13802,10 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== -typescript@5.9.3: - version "5.9.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f" - integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== +typescript@6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-6.0.3.tgz#90251dc007916e972786cb94d74d15b185577d21" + integrity sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw== ufo@^1.6.1: version "1.6.2" From 3c9a84f852806b19e41ea61560c53e4b66ec8d0c Mon Sep 17 00:00:00 2001 From: Xharles Date: Tue, 23 Jun 2026 06:29:52 +0100 Subject: [PATCH 2/2] chore(ts): silence baseUrl deprecation for TypeScript 6 TypeScript 6.0 turns the deprecated `baseUrl` compiler option into a hard error (TS5101). The frontend, ui-kit and cypress tsconfigs still rely on `baseUrl` for `paths` resolution, so typecheck fails under TS 6 without this. Add `ignoreDeprecations: "6.0"` to the shared base config to unblock the upgrade. `baseUrl` stops functioning entirely in TS 7.0, so it should be removed (and `paths` migrated to resolve relative to each tsconfig) before that bump. --- tsconfig.base.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.base.json b/tsconfig.base.json index 96750a30a..4df016621 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "ignoreDeprecations": "6.0", "target": "ESNext", "module": "ESNext", "moduleResolution": "Bundler",