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