问题
最近使用vite+vue3+ts开发项目,使用vite提供的 import.meta.glob 函数从文件系统导入多个模块:
const files = import.meta.globEager('./module/*.ts')
ts报错:Property 'glob' does not exist on type 'ImportMeta'.
解决
需要在tsconfig.json中进行配置:
{
"compilerOptions": {
"types": ["vite/client"]
}
}