google-api-nodejs-client
google-api-nodejs-client copied to clipboard
typescript compilation issue with proto-loader: 0.6.11
Hi, I'm getting typescript compilation with new version of @grpc/proto-loader: 0.6.11
I have a depencency on 'googleapis'. Previous version resolved was @grpc/proto-loader: 0.6.9 not causing issue. Now it's resolving to 0.6.11 with the following typescript compilation error:
node_modules/@google-cloud/pubsub/build/protos/protos.d.ts:15:23 - error TS2497: This module can only be referenced with ECMAScript imports/exports by turning on the 'esModuleInterop' flag and referencing its default export.
15 import * as Long from "long"; ~~~~~~
node_modules/google-gax/build/protos/iam_service.d.ts:17:23 - error TS2497: This module can only be referenced with ECMAScript imports/exports by turning on the 'esModuleInterop' flag and referencing its default export.
17 import * as Long from 'long'; ~~~~~~
node_modules/google-gax/build/protos/operations.d.ts:17:23 - error TS2497: This module can only be referenced with ECMAScript imports/exports by turning on the 'esModuleInterop' flag and referencing its default export.
17 import * as Long from 'long';
Environment details
- OS: centos8
- Node.js version: 14.16.0
- npm version: 6.14.11
-
googleapis
version: 100.0.0 (same issue in v95)
Steps to reproduce
- npm i
- npx tsc
Strangely the resolved version on my ubuntu machine is still 0.6.9, but on my centos machine, it resolves to 0.6.11. In the attached repro project, I have explicitely added "@grpc/proto-loader": "0.6.11" to trigger the issue.
Thanks! repro.tar.gz
related to https://github.com/googleapis/gax-nodejs/issues/1246 and https://github.com/grpc/grpc-node/issues/2113. Seems like a fix is underway