0
votes

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.

Error - Image

Tech Stack - Image

2
Most likely related to this stackoverflow.com/questions/54529027/… - martin
Just check what RxJS version you have installed - martin
Hello martin, I've already tried this out. Yet no luck. :/ Any other solution? - Shaon Dey
Not really. It looks like exactly what's described here stackoverflow.com/questions/54529027/… so I don't have any better idea - martin

2 Answers

1
votes

I had the same problem, installing this solved the error

npm install [email protected] --save

0
votes

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.