From a216d0ccff8688e6992f92f727dbdf3bd9f64237 Mon Sep 17 00:00:00 2001 From: LiChaoYang <249313573@qq.com> Date: Fri, 29 Dec 2023 17:36:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=9C=A8=20vscode=20=E4=B8=AD=E6=89=93?= =?UTF-8?q?=E5=BC=80=E7=9A=84=20.vue=20=E6=96=87=E4=BB=B6=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=B1=BB=E5=9E=8B=E6=97=A0=E6=B3=95=E8=A2=AB=E6=8E=A8?= =?UTF-8?q?=E6=96=AD=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- snowy-admin-web/jsconfig.json | 11 ----------- snowy-admin-web/tsconfig.json | 12 ++++++++++++ 2 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 snowy-admin-web/jsconfig.json create mode 100644 snowy-admin-web/tsconfig.json diff --git a/snowy-admin-web/jsconfig.json b/snowy-admin-web/jsconfig.json deleted file mode 100644 index 1bd0da4c..00000000 --- a/snowy-admin-web/jsconfig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "compilerOptions": { - "target": "es6", - "baseUrl": ".", - "paths": { - "@/*": ["src/*"] - } - }, - "exclude": ["node_modules", "dist"], - "include": ["src/**/*"] -} diff --git a/snowy-admin-web/tsconfig.json b/snowy-admin-web/tsconfig.json new file mode 100644 index 00000000..5b68587d --- /dev/null +++ b/snowy-admin-web/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + // /* Bundler mode */ + "allowJs": true, + "baseUrl": ".", + "outDir": "./dist", + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["src/**/*"] +}