From 448feee6f951bd143a7b93e7e75360f1e9e71e47 Mon Sep 17 00:00:00 2001 From: WKJBryan Date: Fri, 12 Jun 2026 17:34:21 +0800 Subject: [PATCH] Remove deprecated baseUrl from jsconfig.json TypeScript 7.0 removes baseUrl and editors now flag it as deprecated. Since TS 5.x, relative "paths" mappings resolve against the config file location, so "./src/*" works unchanged without it. Editor-only config; the build alias lives in vite.config.js. Co-Authored-By: Claude Fable 5 --- frontend/jsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/jsconfig.json b/frontend/jsconfig.json index 6a70e94..1f54eba 100644 --- a/frontend/jsconfig.json +++ b/frontend/jsconfig.json @@ -22,7 +22,6 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, /* Path mapping */ - "baseUrl": ".", "paths": { "@/*": [ "./src/*"