vite.config.ts
可以配置resolve.alias
别名,这样在项目中import时就不用写一长串相对路径了,但有时会遇到编辑器提示『找不到模块』,虽然不影响编译与运行,但看着很碍眼。
原因就是缺少了相应的配置,导致VSCode识别不了模块。
在项目的src
目录下新建vite-env.d.ts
,写入以下内容:
///
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
在项目根目录下的tsconfig.json
文件中加入baseUrl
和path
两个选项,具体的值就根据你的实际情况修改:
{
"compilerOptions": {
//...
"baseUrl": "src",
"paths": {
"@hooks/*": ["hooks/*"]
}
}
//...
}