diff options
Diffstat (limited to 'babel.config.js')
-rw-r--r-- | babel.config.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 00000000000..004c14b5119 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,14 @@ +module.exports = { + plugins: [ + '@babel/plugin-syntax-dynamic-import', + ['@babel/plugin-proposal-class-properties', { loose: true }] + ], + presets: [ + [ + '@babel/preset-env', + { + modules: false + } + ] + ] +}; |