CyberChef/babel.config.js

33 lines
763 B
JavaScript
Raw Normal View History

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