From 751e8d2bdd3f217591bf03bcf6138c01ad21b081 Mon Sep 17 00:00:00 2001 From: End Date: Mon, 6 Apr 2026 22:31:18 -0700 Subject: [PATCH] fix(config): remove deprecated baseUrl for TypeScript 6.0 compatibility baseUrl is deprecated in TS 6.0 (TS5101). With moduleResolution set to "bundler", paths aliases work without it. --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ca5035c..9a73025 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,6 @@ "noUnusedLocals": false, "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, - "baseUrl": ".", "paths": { "@/*": [ "./src/*"