I got an error of
node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: \';\' expected.
after the installation of Angular
You need to do some changes in package.json
package.json
Go to package.json and modify "rxjs": "^6.0.0" to "rxjs": "6.0.0"
"rxjs": "^6.0.0"
"rxjs": "6.0.0"
Then run npm update in your project
npm update