I\'m building my first Angular Application. I\'m creating a new Angular application using this command ng new purchase-section. But when I executing the application
ng new purchase-section
In your Package.json file remove ^ symbol (caret) from "rxjs": "^6.0.0" and add "rxjs": "6.0.0" it will work fine.
Package.json
^
"rxjs": "^6.0.0"
"rxjs": "6.0.0"