Typings issues with version 8.0.0 - Cannot find name 'Lowercase'
See original GitHub issueSteps to reproduce
Tell us about your environment:
- Puppeteer version: 8.0.0
- Platform / OS version: Mac OS Big Sur
- Node.js version: 12.20.1
What steps will reproduce the problem?
- Install,
npm i (with the 8.0.0 version) - Build,
npm run build
What is the expected result? Project build successfully
What happens instead? Typings issues :
node_modules/puppeteer/lib/types.d.ts:24083:36 - error TS2304: Cannot find name 'Lowercase'.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:19
- Comments:15
Top Results From Across the Web
export declare type ResourceType = Lowercase<Protocol ...
I'm working on a nodejs project to generate PDFs using Puppeteer in server side. In there I'm using typescript and current version of...
Read more >cannot find name 'fs' - You.com | The search engine you control.
Typescript: Getting started problems (Cannot find module fs and cannot find name typings). Asked Aug 31, 2016 • 1 votes 1 answer. QUESTION...
Read more >Cannot find module file or its corresponding type declarations.ts ...
Answers related to “Cannot find module file or its corresponding type declarations.ts(2307)”. Could not find a declaration file for module 'module-name'.
Read more >EditPad Lite Release Notes
We take pride in producing high quality software, and often release free updates to ensure you won't have any problems with our software....
Read more >npmsearchfullcat_npm143.txt - GitHub
NAME DESCRIPTION AUTHOR DATE VERSION KEYWORDS 007 Returns a deep copy of an object ... user-agent browser http nodejs agentkeepalive Missing keepalive http....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Confirmed updating Typescript from v3.9.x to ^4.0 resolves this issue
npm i -D typescript@^4.0I would suggest updating the package dependencies to suit
Lowercase<T>was introduced with TypeScript 4.1, so using any version newer then that should fix this problem.