You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
420 B
28 lines
420 B
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"types": [],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"module": "esnext",
|
|
"target": "es2018",
|
|
"allowJs": true,
|
|
"checkJs": false
|
|
},
|
|
"typeAcquisition": {
|
|
"enable": false
|
|
},
|
|
"include": [
|
|
"src/**/*.js",
|
|
"src/**/*.vue",
|
|
"vue.config.js",
|
|
"babel.config.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|
|
|