CyberChef/babel.config.js

28 lines
673 B
JavaScript
Raw Normal View History

module.exports = function(api) {
api.cache.forever();
return {
"presets": [
["@babel/preset-env", {
"modules": false,
2019-03-30 15:56:43 +01:00
"useBuiltIns": "entry",
"corejs": 3
}]
],
"plugins": [
"dynamic-import-node",
2022-03-25 15:59:54 +01:00
"@babel/plugin-syntax-import-assertions",
2019-03-30 15:56:43 +01:00
[
"babel-plugin-transform-builtin-extend", {
"globals": ["Error"]
}
],
[
"@babel/plugin-transform-runtime", {
"regenerator": true
}
]
]
};
};