欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vscode 编辑器路径提示

程序员文章站 2024-03-05 12:24:18
...

下载插件path intellisense 然后打开settings.json 里加上

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

然后在项目根目录上jsconfig.json文件

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


重启vscode即可


vscode 编辑器路径提示
大功告成!