0

I have tried this solution. But it is not working for me. I've cloned a project from gitlab and trying to run the same. First see the output of my ng version command. enter image description here. I want to run an angular 6 project available on gitlab. You can clone it from here. I extracted the project and tried npm install. To which I'm getting the below errors: <code>npm install</code> screenshot. However I still tried ng serve. ng serve screenshot I know It will definitely fail now. Please tell me whether something is wrong with the project or I am doing some mistake. Even with run as admin cmd prompt i'm getting this: enter image description here

Tanzeel
  • 4,174
  • 13
  • 57
  • 110

1 Answers1

1

I have taken the clone and tried running ng serve, I got the same issue. However, I am able to run the project by changing rxjs version. Try using following command :

npm install rxjs@6.0.0 --save

Reference: https://github.com/ReactiveX/rxjs/issues/4540

Shrutika Patil
  • 565
  • 3
  • 18