-
Notifications
You must be signed in to change notification settings - Fork 2.2k
ERROR in ts(24,5): error TS2322: Type 'import("ClientApp/node_modules/@angular/fire/node_modules/rxjs/internal/Observable").Observable<any>' is not assignable to type 'import("ClientApp/node_modules/rxjs/internal/Observable").Observable<any>'. #2062
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
Comments
@DominikDitoIvosevic I had the same issue. For some reason there were node_modules folder inside @angular/fire folder. After deleting both node_modules and package-lock.json and doing npm install I was getting it working. |
True. I had the same issue as you guys @diginikkari @DominikDitoIvosevic |
@jamesdaniels The node_module folder is still being included in the package with "beta.4" and causing this error. |
Weird... I'll take a peek at this. Thanks. |
I bet it's something to do with how the test suite being run on our new CI/CD pipeline. I'll fix and release another beta. |
Though I'm not seeing anything off in the tarball, |
Having the same issue with the latest RC |
I have the same issue with 5.2.0-rc.1 Deps
|
This should be addressed in |
Deps:
I'm trying to upgrade to the release candidate of angular 8. Apart from complaining about how angularfire2 doesn't support version 8 (when will there be a beta release which supports?) I'm also having this issue. My guess would be that the APIs of the rxjs which angularfire uses doesn't match with the version which I'm using.
I checked package.json of angularfire and I see that it's using 5.0.0 . I tried with both 5.0.0 and 5.6.1 in my repo and both reported this issue. I didn't have this problem prior to updating to angularfire 5.2.0 beta.2
This happens when I try using angular fire storage service
import { Injectable } from "@angular/core";
import { AngularFireStorage } from "@angular/fire/storage";
import { Observable } from "rxjs";
export interface HTMLInputEvent extends Event {
target: HTMLInputElement & EventTarget;
}
The text was updated successfully, but these errors were encountered: