您的当前位置:首页正文

webstorm vue项目 @/xx/xx 相对路径不能跳转到对应文件

2024-11-09 来源:个人技术集锦

2、jsconfig.json 配置内容

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

显示全文