From 29d1d01b3bfba8f07859eb0e5f6323c86f5980e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Sat, 11 Jun 2022 14:00:10 +0800 Subject: [PATCH] add jsconfig.json --- jsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..86b1741 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,11 @@ +/* 主要作用是vscode导入使用别名时可以自动化提示文件路径 */ +{ + "compilerOptions": { + "experimentalDecorators": true, + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } + }, + "exclude": ["node_modules", "dist", ".vscode"] +} \ No newline at end of file