mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
25 lines
610 B
JavaScript
25 lines
610 B
JavaScript
module.exports = function(api) {
|
|
api.cache.forever();
|
|
|
|
return {
|
|
"presets": [
|
|
["@babel/preset-env", {
|
|
"targets": {
|
|
"chrome": 40,
|
|
"firefox": 35,
|
|
"edge": 14,
|
|
"node": "6.5"
|
|
},
|
|
"modules": false,
|
|
"useBuiltIns": "entry"
|
|
}]
|
|
],
|
|
"plugins": [
|
|
"babel-plugin-syntax-dynamic-import",
|
|
["babel-plugin-transform-builtin-extend", {
|
|
"globals": ["Error"]
|
|
}]
|
|
]
|
|
};
|
|
};
|