From ea86aa9a38cc43ef8177777103c3f114d02c4d7e Mon Sep 17 00:00:00 2001 From: Will Pfleger Date: Thu, 21 May 2026 14:32:17 -0400 Subject: [PATCH] fix(frontend): remove deprecated baseUrl for TypeScript 6 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TypeScript 6 deprecated baseUrl — paths now resolve relative to tsconfig.json without it. Removes baseUrl from both desktop and web tsconfigs so Renovate's TS 6 upgrade PR can pass CI. --- desktop/tsconfig.json | 1 - web/tsconfig.json | 1 - 2 files changed, 2 deletions(-) diff --git a/desktop/tsconfig.json b/desktop/tsconfig.json index 7ef7c299a..456359a35 100644 --- a/desktop/tsconfig.json +++ b/desktop/tsconfig.json @@ -5,7 +5,6 @@ "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] }, diff --git a/web/tsconfig.json b/web/tsconfig.json index 7ef7c299a..456359a35 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json @@ -5,7 +5,6 @@ "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] },