Как устранить ошибку типа Typescript в функциях Firebase после установки @ google-cloud / storage - PullRequest
0 голосов
/ 29 декабря 2018

Я получаю следующую ошибку сборки сразу после установки модуля Cloud Storage в мою среду Firebase Cloud Functions:

node_modules/@google-cloud/common/build/src/service-object.d.ts(72,45): error TS8020: JSDoc types can only be used inside documentation comments.
node_modules/@google-cloud/common/build/src/service-object.d.ts(72,45): error TS8028: JSDoc '...' may only appear in the last parameter of a signature.
node_modules/@google-cloud/common/node_modules/google-auth-library/build/src/auth/oauth2client.d.ts(291,55): error TS1039: Initializers are not allowed in ambient contexts.

Кто-нибудь знает, как решить эту проблему?

1 Ответ

0 голосов
/ 29 декабря 2018

Кажется, проблема связана с установленными версиями Typescript ^ 2 и ниже.Обновление до Typescript 3 решило проблему для меня.

Источник: https://github.com/firebase/firebase-functions/issues/341

...