vite配置别名,tsconfig提示:找不到模块“xxx”或其相应的类型声明。
vite配置别名,tsconfig提示:找不到模块“xxx”或其相应的类型声明。
·
1、配置 vite.config.ts
,修改文件别名
vite.config.ts
文件,配置别名
-- vite.config.ts --
import { defineConfig } from 'vite'
// 1. commonjs 需要改为 esmoule引入
// 2. 需要安装 @types/node
import { resolve } from 'path';
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: [
{
find: '@', // 别名
replacement: resolve(__dirname, 'src'), // 别名对应地址
},
{
find: 'components',
replacement: resolve(__dirname, 'src/components'),
}
]
}
})
- 安装
@types/node
模块,解决使用import
引入nodejs 的 path 模块
报错的问题。
npm i @types/node -D
2、配置tsconfig.json文件
- 通过
步骤1
设置完别名之后,ts
的解析会出现问题,如下图:
- 需要配置
tsconfig.json
,设置baseUrl
和paths
属性。
-- tsconfig.json --
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*":["src/*"],
"components":["src/components/*"],
"_pinia/*":["src/pinia/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}
参考:
https://blog.csdn.net/weixin_53068161/article/details/126693499
更多推荐
已为社区贡献1条内容
所有评论(0)