I'm trying to build a react application using rollup instead of browserify and babel. I realize I need to use the rollup-plugin-babel
to transpile jsx, but when I tell rollup the format is iife
, the final page loads with an error:
Uncaught ReferenceError: React is not defined
What do I need to add to the rollup.config.js
to include the node modules I've installed in package.json
in my final build?