From 2ee809c3ba18c61ab0293dd345ba6af1012470bd Mon Sep 17 00:00:00 2001 From: ylx252 Date: Tue, 26 Mar 2024 15:00:46 +0800 Subject: [PATCH] Update tsconfig.json (#318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解决在 webstorm 下使用别名 @ 导入包没有代码提示 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d46956b2..4331f8e3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,6 +17,7 @@ "dom" ], "skipLibCheck": true, + "baseUrl": ".", "paths": { "@/*": [ "./src/*" @@ -36,4 +37,4 @@ "path": "./tsconfig.node.json" } ] -} \ No newline at end of file +}