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

前端 未结 16 932
甜味超标
甜味超标 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:53

    You need to do some changes in package.json

    Go to package.json and modify "rxjs": "^6.0.0" to "rxjs": "6.0.0"

    Then run npm update in your project

提交回复
热议问题