vue,在vs code路径提示配置

第一步

1.安装 Path Intellisense插件
2.打开设置 - 首选项 - 搜索 Path Intellisense - 打开 settings.json ,添加以下代码:

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

第二步

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

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

重启vs code

你可能感兴趣的:(vue,在vs code路径提示配置)