react/fixtures/legacy-jsx-runtimes/babel.config.js
Dan Abramov 6d50a9d090
Fixture: Legacy JSX Runtimes (#20012)
* Fixture: Legacy JSX Runtimes

* Add more comments
2020-10-14 18:28:03 +01:00

13 lines
241 B
JavaScript

module.exports = {
presets: [
[
'@babel/react',
{
runtime: 'automatic',
development: process.env.BABEL_ENV === 'development',
},
],
],
plugins: ['@babel/plugin-transform-modules-commonjs'],
};