From 2178934d7c82c2291f0ed572888ebc1044ce1a13 Mon Sep 17 00:00:00 2001 From: Austin Bennett Date: Thu, 23 Jul 2026 08:50:09 -0500 Subject: [PATCH] tsconfig: drop baseUrl, which TypeScript 7 removed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TS7 errors with 'Option baseUrl has been removed'. The paths mapping already points at ./src/*, which resolves relative to this file without it, and TS 5.9 accepts the same config — so this lands safely ahead of the TypeScript 7 bump. --- frontend/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 0c1fb4f..43ed851 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -11,7 +11,6 @@ "noEmit": true, "resolveJsonModule": true, "isolatedModules": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] } }, "include": ["src", "vite.config.ts"]