var test = () => { console.log(this); }
var _this = this;
var test = function () {
console.log(_this);
}
var _this = this:
call at the top of the transpiled code assigned the window object, which obviously already has jQuery, so the selector worked, but is very dodgy. (I think you alluded to this in your talk?)