Home > database >  Run typescript on project version of Angular
Run typescript on project version of Angular

Time:12-14

I need to be able to run projects with different versions of Angular on the same computer.

Is there a way to use the version of angular only in the package.json?

CodePudding user response:

When you run a project with ng serve, Angular uses the local version by default. So it will use the @angular/cli version you have in your project.

This answer explains it well.

  • Related