Shaon Dey
Shaon Dey

Reputation: 11

Getting “error TS1005, TS1109” for Angular 6 project after start

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

Upvotes: 1

Views: 4129

Answers (2)

Janith Udara
Janith Udara

Reputation: 685

I had the same problem, installing this solved the error

npm install [email protected] --save

Upvotes: 1

Felipe Santa
Felipe Santa

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

Related Questions