React Native tsconfig.json显示错误:隐式类型库“glob”的入口点

s3fp2yjn  于 2023-04-07  发布在  React
关注(0)|答案(2)|浏览(296)

我有一个使用Typescript的Monorepo。我有一个 common 文件夹,在文件顶部显示此错误-〉Entry point for implicit type library 'glob'。我不确定配置有什么问题。

截图:

tsconfig.json

{
"extends": "../../tsconfig.json",
"compilerOptions": {
    "allowJs": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "isolatedModules": true,
    "jsx": "react-native",
    "lib": [
        "es2021"
    ],
    "moduleResolution": "node",
    "noEmit": false,
    "strict": true,
    "target": "esnext",
    "composite": true,
    "rootDir": ".",
    "outDir": "dist",
    "declaration": true,
    "emitDeclarationOnly": true,
    "declarationMap": true
},
"exclude": [
    "node_modules",
]
}

有什么建议吗?

hrysbysz

hrysbysz1#

我刚重新启动VS Code,错误就消失了。

laik7k3q

laik7k3q2#

在“compilerOptions”中包含“types”...

{
  "compilerOptions": {
    "types": [
      // ... your other types
      "node"
    ],
  },
}

相关问题