forms/babel.config.js

13 lines
173 B
JavaScript
Raw Permalink Normal View History

2019-05-14 01:15:45 +02:00
module.exports = {
plugins: ['@babel/plugin-syntax-dynamic-import'],
presets: [
[
'@babel/preset-env',
{
corejs: 3,
useBuiltIns: 'entry',
},
],
],
2019-05-14 01:15:45 +02:00
}