vite 项目webstorm、 VSCode 无法对 @ 路径 跳转

279 阅读1分钟

在根目录加一个jsconfig.json文件

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