2018-09-10 10:02:26 +00:00
|
|
|
module.exports = {
|
2019-05-23 15:03:04 +00:00
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
['@babel/plugin-proposal-class-properties', { loose: true }]
|
|
|
|
],
|
2018-09-10 10:02:26 +00:00
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
2019-10-16 21:24:00 +00:00
|
|
|
modules: false
|
2018-09-10 10:02:26 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2019-10-16 21:24:00 +00:00
|
|
|
};
|