2022-09-12 18:19:01 +00:00
|
|
|
module.exports = {
|
2023-01-20 18:50:48 +00:00
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
],
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
2022-09-12 18:19:01 +00:00
|
|
|
"targets": "> 5%, not dead",
|
2023-01-20 18:50:48 +00:00
|
|
|
useBuiltIns: false,
|
|
|
|
modules: 'auto',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
2022-09-12 18:19:01 +00:00
|
|
|
}
|