vbagx/babel.config.js
Juan Carlos Ruvalcaba a23e95ca0a Initial commit
2021-04-13 14:46:54 -07:00

12 lines
182 B
JavaScript

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