Quantcast
Channel: Active questions tagged react-native+typescript - Stack Overflow
Viewing all articles
Browse latest Browse all 6287

tsconfig.json shows error: Entry point for implicit type library 'glob'

$
0
0

I have a Monorepo which uses Typescript. I have a common folder which shows this error on the top of the file -> Entry point for implicit type library 'glob'. I am not sure what is wrong with the configuration.

Screenshot:

enter image description here

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",]}

Any Suggestions?


Viewing all articles
Browse latest Browse all 6287

Trending Articles