portails/config/babel.config.js

18 lines
419 B
JavaScript
Raw Normal View History

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