From 9c0588f5d55be6df45c2bf41ec0d5dc76ba5c859 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 23 Nov 2025 16:54:13 +0200 Subject: [PATCH] Fix IDE resolution of absolute module paths --- public/jsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/public/jsconfig.json b/public/jsconfig.json index f034fb31b..e74e1090a 100644 --- a/public/jsconfig.json +++ b/public/jsconfig.json @@ -6,7 +6,13 @@ "moduleResolution": "node", "allowUmdGlobalAccess": true, "allowSyntheticDefaultImports": true, - "strictBindCallApply": true + "strictBindCallApply": true, + "baseUrl": ".", + "paths": { + "/*": [ + "./*" + ] + } }, "exclude": [ "**/node_modules/**",