Reputation: 11
I'm facing this problem to start the Angular 6 app. Does anyone have solution to this?
ERROR in node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected.
node_modules/rxjs/internal/types.d.ts(81,74): error TS1005: ';' expected.
node_modules/rxjs/internal/types.d.ts(81,77): error TS1109: Expression expected.
Tried a lot to solve this. Tried to install different versions of Node/RxJS as well. Yet no luck.
Upvotes: 1
Views: 4129
Reputation: 685
I had the same problem, installing this solved the error
npm install [email protected] --save
Upvotes: 1
Reputation: 389
I had the same problem and i changed the next dependency
"rxjs": "^6.0.0" ===> "rxjs": "6.0.0"
I only removed the ^ symbol and removed node_modules folder and run "npm i" like last step and it's worked for me. I hope it works you you.
Upvotes: 0