vsCode配置import@路径提示

1、安装插件:Path Intellisense插件;
2. eg:vsCode配置import@路径提示_第1张图片
3.添加:

"path-intellisense.mappings": {
      "@": "${workspaceRoot}/src"
   }

4.在项目package.json所在同级目录下创建文件jsconfig.json:

{
    "compilerOptions": {
        "target": "ES6",
        "module": "commonjs",
        "allowSyntheticDefaultImports": true,
        "baseUrl": "./",
        "paths": {
          "@/*": ["src/*"]
        }
    },
    "exclude": [
        "node_modules"
    ]
}

5.在.gitignore文件中添加jsconfig.json文件防止上传到远程仓库(每个人爱好不一样,根据你的项目架构而定)

你可能感兴趣的:(vscode插件)