Mateusz Burzyński
Mateusz Burzyński
@malekpour could you provide a repro case?
This happens because Vite serves `react-is` "as-is" - without transforming it anyhow and Vite relies on native modules in the browser. The "imported" file is this: ```js 'use strict'; if...
@tomayac could you prepare a branch with this change so I could take a look? > If I do use the FileSystemHandle type exported from browser-fs-access, TyeScript doesn't seem to...
The reported error is correct here - you can't assign an instance of a superclass to a function that expects an instance of its subclass (u try to pass something...
Q: how do you deal with things like this? ```js const rest = { flexGrow: 0 } ; ```
Love the detailed report! I've created rollup example - https://github.com/scabbiaza/ramda-webpack-tree-shaking-examples/pull/1 Resulting bundle - 513 bytes (that is umd wrapper included). Ramda at the moment is suited for tree shaking as...
I've created yet another PR to your repository with `ModuleConcatenationPlugin` in webpack's config. It also helps **a lot** for webpack's case, I don't quite think it's webpack's merit in this...
@scabbiaza This comment is about webpack **without** `ModuleConcatenationPlugin` used.
Keep in mind that `ModuleConcatenationPlugin` is considered experimental at this point (i think, maybe its already past that phase). Im not sure how well it plays with code-splitted project, but...
Also - I really love the way you have created your examples repository. You could easily expand it to some medium writeup (not much longer than the existing README) and...