From 7a0ce90844d3a2a07badd18808224f113fb0127a Mon Sep 17 00:00:00 2001 From: Musiker15 Date: Tue, 14 Jul 2026 14:09:18 +0200 Subject: [PATCH] chore(deps): ignore TypeScript major bumps TypeScript 7 (the native compiler) is not yet supported by our toolchain: typescript-eslint 8 crashes on it. A major TypeScript upgrade has to be a deliberate migration, like the existing Next.js and Tailwind rules. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7969ce7..3d287d6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -46,6 +46,10 @@ updates: # v3 HSL token format, so a v4 major must be a deliberate migration. - dependency-name: "tailwindcss" update-types: ["version-update:semver-major"] + # TypeScript majors are a deliberate migration: TS 7 (the native compiler) + # is not yet supported by our toolchain (typescript-eslint 8 crashes on it). + - dependency-name: "typescript" + update-types: ["version-update:semver-major"] # --- GitHub Actions ------------------------------------------------------ - package-ecosystem: "github-actions"