-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Property 'firebaseArgs' implicitly has type 'any', because its get accessor lacks a return type annotation. #852
Comments
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight. |
Same here after uploading firebase-functions this morning. node_modules/firebase-functions/lib/apps.d.ts:33:21 - error TS7033: Property 'firebaseArgs' implicitly has type 'any', because its get accessor lacks a return type annotation. @AgungLaksana did you solve this ? |
A workaround that made the trick: |
i can solve the problem by update the firebase CLI and firebase function to
the latest version
…On Mon, Feb 8, 2021, 4:41 PM Mikael ***@***.***> wrote:
A workaround that made the trick:
delete node_modules, delete packages-lock.json, run npm install.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#852 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHIGUSPRVMMSIMGINSEC3MLS56WUHANCNFSM4WSZC2TA>
.
|
Closing since this works at HEAD |
I have this error when trying to recomplie my typescript code using
tsc
node_modules/firebase-functions/lib/apps.d.ts:33:21 - error TS7033: Property 'firebaseArgs' implicitly has type 'any', because its get accessor lacks a return type annotation.
33 private get firebaseArgs();
I use this dependecies:
"firebase-admin": "^9.4.2",
"firebase-functions": "^3.13.1"
and currently using engines node 14 and Firebase CLI 9.2.2
how to solve this issue?
The text was updated successfully, but these errors were encountered: