diff options
Diffstat (limited to '.babelrc.js')
-rw-r--r-- | .babelrc.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.babelrc.js b/.babelrc.js index 5cfbddd7a0a..004c14b5119 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -1,5 +1,8 @@ module.exports = { - plugins: ['@babel/plugin-syntax-dynamic-import'], + plugins: [ + '@babel/plugin-syntax-dynamic-import', + ['@babel/plugin-proposal-class-properties', { loose: true }] + ], presets: [ [ '@babel/preset-env', |