2019-09-06 14:04:23 +02:00
|
|
|
module.exports = ({
|
2019-06-14 11:05:46 +02:00
|
|
|
"presets": ["@babel/preset-env"],
|
|
|
|
"sourceMaps": "inline",
|
|
|
|
"retainLines": true,
|
|
|
|
"plugins": [
|
|
|
|
["@babel/plugin-transform-runtime",
|
|
|
|
{
|
|
|
|
"regenerator": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2019-09-06 14:04:23 +02:00
|
|
|
});
|