vscode 点击 import 的对象 from 带有 @ 不能自动跳转 - 要配置 jsconfig.json

问题

vscode 点击 import 的对象 from 带有 @ 不能自动跳转 - 要配置 jsconfig.json

答案

根目录 创建 jsconfig.json
20220808 更新 include 解决 js import 变量 或者函数 点击 函数名 不能跳转的问题

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

资料

解决VScode中文件路径使用@所导致的跳转失败问题
https://blog.csdn.net/qq_39352650/article/details/121998636

posted @ 2022-08-05 15:51  彭成刚  阅读(975)  评论(0编辑  收藏  举报