I got an error of
node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: \';\' expected.
after the installation of Angular
Just do the one changes in package.json file
"rxjs": "^6.0.0",
Just delete the ^ like i did in the below code & update the npm(node package manager)
"rxjs": "6.0.0",
npm update
ng serve --open
Now file your project will start normally