1.4.0 produces typescript error
See original GitHub issue#11 11.92 node_modules/@grpc/grpc-js/build/src/channelz.d.ts(3,30): error TS2307: Cannot find module './generated/grpc/channelz/v1/ChannelTrace' or its corresponding type declarations.
#11 11.92 node_modules/@grpc/grpc-js/build/src/channelz.d.ts(5,54): error TS2307: Cannot find module './generated/grpc/channelz/v1/Channelz' or its corresponding type declarations.
I had to lock my version of the client to 1.3.8
for my typescript to compile.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Aurelia TypeScript -Webpack skeleton npm install gives error
I just installed and ran the latest Webpack TypeScript skeleton release on Node 4.4.7 with NPM 3.10.5 successfully. You might want to try ......
Read more >Documentation - TypeScript 1.8
TypeScript can reports errors for fall-through cases in switch statement where the case clause is non-empty. This check is turned off by default,...
Read more >ProseMirror is now a TypeScript project - Announce
Hi @marijn, We are using some fix versions of prosemirror and since yesterday we are getting some errors while trying to build our...
Read more >import gives ts1005... lots of them - Microsoft Community Hub
When I try to run gulp build, it gives me this: Error - typescript - node_modules/@uifabric/react-hooks/node_modules/ ...
Read more >Kotlin/JS IR compiler
The IR compiler backend is available starting with Kotlin 1.4.0 through the Kotlin/JS ... Ignore compilation errors mode is Experimental.
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 FreeTop 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
Top GitHub Comments
From those errors, it looks like it’s having trouble with
import type
statements, which were introduced in TypeScript 3.8, so you need at least that version.Thanks for pointing that out @murgatroid99 yeah I think we’ll have to upgrade typescript on our end if we want to update to the new version. For the time being we’ll pin to 1.3.8. Thanks!