From acfc43a00999c976c9aa03e337385f3b65fe21b2 Mon Sep 17 00:00:00 2001 From: dengxiongfei Date: Fri, 25 Feb 2022 19:23:25 +0800 Subject: [PATCH] jsconfig --- .gitignore | 3 +-- jsconfig.json | 12 ++++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 jsconfig.json diff --git a/.gitignore b/.gitignore index 5a2a3da..cc01764 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ /unpackage/dist /unpackage/cache -/.vscode -jsconfig.json \ No newline at end of file +/.vscode \ No newline at end of file diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..a57f870 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./*"], + "/*": ["./*"] + }, + "target": "ES6" + }, + "include": ["./**/*"], + "exclude": ["./uni_modules"] +}