In my case, I was importing "map" from the wrong place:
import {map} from "highcharts";
I just had to add it to my existing rxjs/operators import:
import {take, map} from "rxjs/operators";