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
Just remove ^ character from "rxjs": "^6.0.0" from package.json file and make it "rxjs": "6.0.0". It should work fine.
^
"rxjs": "^6.0.0"
package.json
"rxjs": "6.0.0"