From 81e884b0040e3f4b632dd5b6460d1c631a5c2e49 Mon Sep 17 00:00:00 2001 From: KieranVR Date: Wed, 10 Jun 2026 14:55:29 -0700 Subject: [PATCH] chore: drop deprecated baseUrl from tsconfig Problem: TypeScript 6 deprecates the baseUrl compiler option (error TS5101) and will remove it in TS 7. This is what fails CI on the Dependabot PR bumping typescript to 6.x. Change: remove baseUrl. The paths entries are already written relative ('./*'), and since TS 4.1 paths resolves relative to the tsconfig file without baseUrl. No imports rely on baseUrl-style bare specifiers (verified by grep); everything uses the @/ alias. Why: works identically on the current TS 5.9 and unblocks the TS 6 upgrade. Co-Authored-By: Claude Fable 5 --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3fde8f6..e15f291 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,5 @@ { "compilerOptions": { - "baseUrl": ".", "target": "ESNext", "lib": [ "dom",