From 4b84f25c383be3ac1b21fe52c516cdd9b5b4732f Mon Sep 17 00:00:00 2001 From: fuomag9 <1580624+fuomag9@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:42:58 +0200 Subject: [PATCH] fix ts6 baseurl --- tsconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 4a0878e6..ca50b6a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,6 @@ "isolatedModules": true, "jsx": "react-jsx", "incremental": true, - "baseUrl": ".", "types": [ "bun-types", "node" @@ -25,10 +24,10 @@ "paths": { "@/*": [ "./*", - "src/*" + "./src/*" ], "@/src/*": [ - "src/*" + "./src/*" ] }, "esModuleInterop": true,