I am Getting below Error in Auth.d.ts file in Node_Modules Package.
[ts] Module \'node_modules/rxjs/Observable\"\' has no exported member \'Observable\'. import Observab
import { Observable } from 'rxjs';
and install
npm i rxjs-compat
Try changing it to:
import { Observable } from 'rxjs';
You have to downgrade 'rxjs' to use the current 'firebase' package.
The imports changed in new versions of 'rxjs', and firebase is compatible only with version 5.x.x of RxJs for now.
Change your package.json file to use a compatible version of rxjs:
"rxjs": "5.6.0-forward-compat.4"
and re-run npm install:
npm i
Try npm install rxjs-compat
or yarn add rxjs-compat
.
It's works for me.
npm i rxjs-compat
Please add these in root folder
surely your issue will be resolve
If you are using angular version 6 then You can use
// creation and utility methods
import { Observable, Subject, pipe } from 'rxjs';
// operators all come from rxjs/operators
import { map, takeUntil, tap } from 'rxjs/operators';