From 8ca656e07f7202f80541aa9ae01856da7a936fcb Mon Sep 17 00:00:00 2001 From: FairyEver <1711467488@qq.com> Date: Thu, 29 Aug 2019 13:37:41 +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 000000000..c00240ef6 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "es2017", + "allowSyntheticDefaultImports": false, + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } + }, + "exclude": ["node_modules", "dist"] +}