From 90a3ff6f7774bb8237247ac40973772ac57958b1 Mon Sep 17 00:00:00 2001 From: duanshuwen Date: Fri, 10 Apr 2026 21:01:37 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8Dts=E8=AF=AD=E6=B3=95?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index f787c7f..f75beaa 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,10 +7,19 @@ "compilerOptions": { "baseUrl": "./", "paths": { - "@assets/*": ["src/assets/*"], + "@src/*": ["src/*"], + "@api/*": ["src/api/*"], + "@shared/*": ["src/shared/*"], + "@store/*": ["src/store/*"], + "@constant/*": ["src/constant/*"], + "@utils/*": ["src/utils/*"], "@lib/*": ["src/lib/*"], + "@electron/*": ["electron/*"], "@service/*": ["electron/service/*"], - "@locales/*": ["src/i18n/locales/*"] + "@locales/*": ["src/i18n/locales/*"], + "@hooks/*": ["src/hooks/*"], + "@components/*": ["src/components/*"], + "@assets/*": ["src/assets/*"] } } }