Issues with Upgrading React Native App to Effect Next 50
I recently tried to upgrade my React Native app to effect next 50, but even after adding few additional babel plugin to transpile syntax missing in react native (I am fine with that) it still errors due to compilation to ESM producing keywords that are reserved names.
For example core.async(...) in the esm build becames async(...) and obviously babel is not fine with that (to support additional syntax, it is required to let babel re-transform the sources).
Is there any way to avoid that?
For example core.async(...) in the esm build becames async(...) and obviously babel is not fine with that (to support additional syntax, it is required to let babel re-transform the sources).
Is there any way to avoid that?
