portails/config/babel.config.js

18 lines
311 B
JavaScript
Raw Normal View History

2020-11-04 08:26:58 +01:00
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: [
// Best practice: https://github.com/babel/babel/issues/7789
'>=1%',
'not ie 11',
2023-04-18 15:10:33 +02:00
'not op_mini all',
],
},
},
],
],
};