添加 jsconfig.json

This commit is contained in:
2022-02-03 16:56:06 +08:00
parent 4592977c31
commit 865e85ef36

17
jsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"baseUrl": "./",
"module": "CommonJS",
"paths": {
"@/*": [
"src/*"
]
},
"sourceMap": false,
"target": "ES5"
},
"include": [
"src/**/*.vue",
"src/**/*.js"
]
}