Cannot find module 'rxjs-compat/Observable'

前端 未结 12 1411
孤街浪徒
孤街浪徒 2020-12-08 06:54

I am currently upgrading angular 4 to angular 6 code. I have installed \"rxjs\": \"^6.3.2\" and un-installed rxjs-compact as I have migrated the code to use the new rxjs ope

12条回答
  •  孤街浪徒
    2020-12-08 07:15

    • ] node_modules/rxjs/Observable.d.ts(1,15): error TS2307: Cannot find module 'rxjs-compat/Observable'

    I have got same above error, to resolve the issue enter this command in you CLI:

    • npm install --save rxjs-compat

    Then after import: import { Observable } from 'rxjs';

提交回复
热议问题