该配置要配置在jsconfig.json
文件中
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*":[
"src/*"
]
}
},
// @ 不能使用在以下文件中
"exclude": [
"node_modules",
"dist"
]
}
该配置要配置在jsconfig.json
文件中
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*":[
"src/*"
]
}
},
// @ 不能使用在以下文件中
"exclude": [
"node_modules",
"dist"
]
}