vscode 配置import @ 路径提示及代码智提

2,668 阅读1分钟
  1. 安装插件:Path Intellisense

  2. 配置:

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