2fas-browser-extension/.babelrc

25 lines
523 B
Plaintext
Raw Permalink Normal View History

2023-03-21 08:20:34 +01:00
{
"presets": [["@babel/env", {
"targets": {
"browsers": ["> 1%", "last 2 versions", "safari >= 16", "not ie > 0", "not dead"]
},
"modules": "commonjs"
}], ["minify", {
2024-03-08 10:02:04 +01:00
"builtIns": false,
"keepFnName": true,
"removeDebugger": true
2023-03-21 08:20:34 +01:00
}]],
"env": {
"production": {
"plugins": [
"@babel/plugin-transform-runtime",
"transform-remove-debugger",
"transform-minify-booleans"
]
}
},
"ignore": [
"2FAS - Two factor authentication/**/*.js"
]
}