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',
|
|
|
|
{
|
2019-10-17 00:24:00 +03:00
|
|
|
modules: false
|
2018-09-10 13:02:26 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2019-10-17 00:24:00 +03:00
|
|
|
};
|