From d680fe50f322abde8ceb14a76e3979034c63e0b5 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 7 Apr 2026 08:23:59 +0000 Subject: [PATCH] fix(client): remove deprecated tsconfig baseUrl TypeScript reports TS5101 for `baseUrl`, which is deprecated and will stop functioning in TS 7.0. The `paths` entries already use relative `./src/*` patterns, so `baseUrl` is unnecessary and can be dropped without changing module resolution. https://claude.ai/code/session_01RrgSn7AUsGYVPRthnudVMr --- Client/tauri-client/tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Client/tauri-client/tsconfig.json b/Client/tauri-client/tsconfig.json index 9ea85696..45b5dc20 100644 --- a/Client/tauri-client/tsconfig.json +++ b/Client/tauri-client/tsconfig.json @@ -34,8 +34,7 @@ "@styles/*": [ "./src/styles/*" ] - }, - "baseUrl": "." + } }, "include": [ "src",