当前位置:   article > 正文

报错:Property glob does not exist on type ImportMeta

报错:Property glob does not exist on type ImportMeta

Vite 项目使用 import.meta.glob 函数进行动态导入

const routes = import.meta.glob('./module/*.ts')
  • 1

出现如下报错

Property 'glob' does not exist on type 'ImportMeta'
  • 1

解决方案:

  • 方案一

配置 tsconfig.jsontype 属性为 vite/client

{
    "compilerOptions": {
        "types": [
            "vite/client"
        ]
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 方案二

在任意的 .d.ts 后缀文件中添加代码,该文件需要在 tsconfig.json 文件中配置的 include 加载范围内

/// <reference types="vite/client" />
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/485471
推荐阅读
相关标签
  

闽ICP备14008679号