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
Step 1 : Go to package.json and modify "rxjs": "^6.0.0" to "rxjs": "6.0.0"
package.json
"rxjs": "^6.0.0"
"rxjs": "6.0.0"
Step 2 Run npm update in your project.
npm update