From 0d1321d0091b2f66f627ac7fa955c728b28ac8dd Mon Sep 17 00:00:00 2001 From: YangFong Date: Sat, 6 Jul 2024 19:28:16 +0800 Subject: [PATCH] fix: path alias --- jsconfig.json | 9 --------- tsconfig.app.json | 4 ++++ 2 files changed, 4 insertions(+), 9 deletions(-) delete mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index adc48451d..000000000 --- a/jsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": "./", - "paths": { - "@/*": ["src/*"] - } - }, - "exclude": ["node_modules", "dist"] -} diff --git a/tsconfig.app.json b/tsconfig.app.json index b8e9723f5..e324ff933 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,5 +1,9 @@ { "compilerOptions": { + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + }, "composite": true, "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2020",