-
安装插件:Path Intellisense
-
配置:
"path-intellisense.mappings": { "@": "${workspaceRoot}/src" }
- 在项目package.json所在同级目录下创建文件jsconfig.json:
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"paths": { "@/*": ["src/*"] }
},
"exclude": [ "node_modules" ]
}