I'm adding RxJS into Angular app. After installing RxJS, I got errors: error TS2305: Module '"rxjs"' has no exported member 'tap'.
for the line of code:
import { catchError, tap } from "rxjs"
After running >npm start
I'm getting list of errors:
I tried to install RxJS below, it didn't help.
npm install rxjs npm i rxjs-compat
Application located here: github.com/sam-klok/angular-kendo-grid-reactive
PS Some people suggesting similarity with Angular - "has no exported member 'Observable'" I believe that it's overall useful article, however in my case library Observable working fine, and fixing methods described in it, didn't help to solve the issue.