使webstorm支持vite别名

1,865 阅读1分钟

最新的 webstorm 2022.2.1 已经支持 vite.config alias

Build toolsFeatureWEB-55332Vite aliases in vite.config support

youtrack.jetbrains.com/articles/WE…

image.png


webstorm不支持 vite.config.js 的别名,也无法进行跳转

image.png

在项目根目录新建 jsconfig.json 文件就可以了,也能进行跳转

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    }
  }
}

image.png