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"] +}