VsCode中使用功能vite创建vue3+js项目报错
VsCode中使用功能vite创建vue3+js项目import模块报错如下
处理方法
在项目根目录新建jsconfig.json
powershell
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*":[
"src/*"
]
}
},
"exclude": [
"node_modeules",
"dist"
]
}