invest/workbench/babel.config.js

10 lines
183 B
JavaScript

module.exports = {
presets: [
'@babel/preset-env',
'@babel/preset-react', // needed only for tests
],
plugins: [
'@babel/plugin-transform-runtime',
],
};