2019-08-07 10:03:49 +02:00
|
|
|
module.exports = ({
|
2019-07-19 13:52:08 +02:00
|
|
|
"presets": ["@babel/preset-env"],
|
|
|
|
"sourceMaps": "inline",
|
|
|
|
"retainLines": true,
|
|
|
|
"plugins": [
|
|
|
|
["@babel/plugin-transform-runtime",
|
|
|
|
{
|
|
|
|
"regenerator": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2019-08-07 10:03:49 +02:00
|
|
|
});
|