I got an error of
node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: \';\' expected.
after the installation of Angular
It is working fine with me when I changed "rxjs" in package.json from "^6.0.0" to "6.0.0" and then run
"npm i"
I got the same error.reason might be due to version mismatch
npm install rxjs@6.0.0 --save
fix the error
If you are using rxjs-compat then you also need to do following in order to fixed the issue. change the rxjs-compat version from
"rxjs-compat": "^6.2.2"
to
"rxjs-compat": "6.2.2"
This works for me
You need to do some changes in package.json
Go to package.json
and modify "rxjs": "^6.0.0"
to "rxjs": "6.0.0"
Then run npm update
in your project