Looking to import rxjs operators, but I keep getting errors at runtime that Object doesn't support property or method named 'map'
From the Angular2 docs, it looks like this should work. I double checked my package.json file, and I have a dependency to version 5.0.0-beta.6
import 'rxjs/operator/map';
UPDATE
I was close. Looks like I need to import 'rxjs/add/operator/map';
but doesn’t fix the intellisense.