Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"error TS2304: Cannot find name 'Long'" when compiling typescript with google api libraries

I just added "@google-cloud/logging-winston":"2.1.0", in my pacakge.json and when I compile I get the following errors. I have seen this with other google libraries occasionally, and its root cause is most likely deeper in the stack in automatic generated types from protobuf definitions.

../node_modules/@google-cloud/logging/build/proto/logging.d.ts:1434:32 - error TS2304: Cannot find name 'Long'.

1434                 line?: (number|Long|null);
                                    ~~~~

../node_modules/@google-cloud/logging/build/proto/logging.d.ts:1453:38 - error TS2304: Cannot find name 'Long'.

1453                 public line: (number|Long);
                                          ~~~~

../node_modules/@google-cloud/logging/build/proto/logging.d.ts:1543:39 - error TS2304: Cannot find name 'Long'.

1543                 requestSize?: (number|Long|null);
                                           ~~~~

../node_modules/@google-cloud/logging/build/proto/logging.d.ts:1549:40 - error TS2304: Cannot find name 'Long'.

1549                 responseSize?: (number|Long|null);
                                            ~~~~

../node_modules/@google-cloud/logging/build/proto/logging.d.ts:1576:42 - error TS2304: Cannot find name 'Long'.

1576                 cacheFillBytes?: (number|Long|null);

like image 518
gae123 Avatar asked Aug 25 '26 10:08

gae123


2 Answers

Here is how I worked around this issue until it is taken care of.

  1. In your package.json dependencies section add "long":"4.0.0",
  2. In your package.json devDependencies section: add "@types/long":"4.0.0",
  3. Finally, in tsconfig.json (add to tsconfig.app.js if that doesn't work) (or in the tsc command line) add:
{
   "compilerOptions": {
     ...
     "types": [
       ...
       "long"
     ],
   ...
}
like image 102
gae123 Avatar answered Aug 28 '26 03:08

gae123


gae123 suggestion did not work for me on typescript version 4.9.4. I added the following to tsconfig.json. Hope this helps.

"compilerOptions":{
      ...
      "skipLibCheck": true,
}
like image 41
Jordan Lim Avatar answered Aug 28 '26 01:08

Jordan Lim



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!