Jessica Franco
Jessica Franco
Sounds like migrating to that is going to be particularly painful for TypeScript... it maps commonjs module.exports directly to the namespace, and requires that you do fun things such as...
I had actually expected implementers of a dynamic import plugin for webpack to actually map to System.import, which on webpack's implementation should already have the wrap-in-default behavior for non-ESM (...I...
@bmeck How does something like this sound? ```js function _specInteropRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = Object.create ? Object.create(null, { default: {...
@aluanhaddad does enabling `--allowSyntheticDefaultImports` also emit appropriate wrapping code, or does it need to be used in combination with both `--modules=es6` and babel/bundler postprocessing?
To confirm: whenever input is in Kana mode, the input goes directly to the chat window instead of the search box. A workaround I managed to find is to copy...
The documentation also states that "The middleware also returns the original promise", but it certainly does not -- the `.then` call makes a new Promise. There is actually an advantage...
Having tested this on win8.1 (by checking the "disable DPI scaling" box in compat settings), I see that hexchat 2.10.0 _mostly_ works correctly. Some icons are way smaller than they...
The REPL is a bit annoying to check but yes, this is affecting code on actual builds.
This depends on #49
The easiest one to add, probably in `babel-eslint`, would be warning on `delete` with a `MemberExpression` argument (["`delete` properties"](https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#521-objects-that-are-in-hash-table-mode-aka-normalized-objects-dictionary-mode---objects-who-have-a-hash-table-as-a-backing-data-structure-are-not-simple-enumerables)), as it's always a deoptimization. Objects that are being used like...