node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected error after installation of Angular 6

前端 未结 16 939
甜味超标
甜味超标 2020-12-22 17:15

I got an error of

node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: \';\' expected.

after the installation of Angular

16条回答
  •  再見小時候
    2020-12-22 17:48

    If you are using rxjs-compat then you also need to do following in order to fixed the issue. change the rxjs-compat version from

    "rxjs-compat": "^6.2.2" 
    

    to

    "rxjs-compat": "6.2.2"
    

    This works for me

提交回复
热议问题