mirror of
https://github.com/gchq/CyberChef.git
synced 2026-03-08 16:00:52 -07:00
* Remove some redundant/obsolete Babel dependencies * Update eslint-plugin-jsdoc to latest compatible version
21 lines
491 B
JavaScript
21 lines
491 B
JavaScript
module.exports = function(api) {
|
|
api.cache.forever();
|
|
|
|
return {
|
|
"presets": [
|
|
["@babel/preset-env", {
|
|
"modules": false,
|
|
"useBuiltIns": "entry",
|
|
"corejs": 3
|
|
}]
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-syntax-import-assertions",
|
|
[
|
|
"@babel/plugin-transform-runtime", {
|
|
"regenerator": true
|
|
}
|
|
]
|
|
]
|
|
};
|
|
};
|