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.
18 lines
342 B
18 lines
342 B
1 year ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES6",
|
||
|
"module": "commonjs",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
// 路径匹配
|
||
|
"@/*": ["src/*"]
|
||
|
}
|
||
|
},
|
||
|
"exclude": [
|
||
|
// 排除某些文件
|
||
|
"node_modules"
|
||
|
],
|
||
|
"include": ["./src/**/*"] //自动引入Vue组件和普通Js模块
|
||
|
}
|