2018-09-10 13:02:26 +03:00
|
|
|
module.exports = {
|
2019-05-23 18:03:04 +03:00
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
['@babel/plugin-proposal-class-properties', { loose: true }]
|
|
|
|
],
|
2018-09-10 13:02:26 +03:00
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
2020-03-10 11:58:52 +03:00
|
|
|
modules: false,
|
|
|
|
corejs: 3,
|
|
|
|
useBuiltIns: false,
|
2018-09-10 13:02:26 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2019-10-17 00:24:00 +03:00
|
|
|
};
|