Created by: RangerMauve
Right now people using this with react-native-web are unable to use any pure JS react-native modules becuase they usually use ES6 and JSX.
React-native's build tool passes all their modules through babel to let module authors use "the latest and greatest" in JS syntax. This tool. however, doesn't compile modules due to performance costs that that would incur.
Many react-native components seem to have names that start with react-native-
. I think that a good compromise would be to compile these modules, this enabling react-native-web projects to use this tool to get up and running instantly without needing to eject in order to use dependencies, while at the same time having no real effect on existing projects that don't make use of react-native-web
Currently react-native-web is missing the easy to use tooling that's provided with react-native. This change could bring react-native-web development to about the same level and enable people to build hybrid projects faster.
I've currently got this running with react-native-vector-icons and am planning on using many more as time progresses.