问题
vscode 点击 import 的对象 from 带有 @ 不能自动跳转 - 要配置 jsconfig.json
答案
根目录 创建 jsconfig.json
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"exclude": [
"node_modules"
]
}
资料
解决VScode中文件路径使用@所导致的跳转失败问题
https://blog.csdn.net/qq_39352650/article/details/121998636