I'm just getting to know parceljs and find it very delightful, there is just one thing that seems a bit overkill:
I'm using parceljs to transpile infernojs' tsx files to javascript. The generated code, however, contains the original React.createElement function, which obviously can't work:
inferno_1.render(React.createElement("div", null, "woot"), document.getElementById("app"));
I've seen examples that use a .babelrc file with the plugin babel-plugin-inferno, which seems to work, but since that adds various babel dependencies I was just wondering isn't there a way to specify the transform function, without all the extra baggage. (since parcel seems to be about being simple and all)