website/babel.config.js

17 lines
304 B
JavaScript
Raw Normal View History

2021-03-09 18:56:02 +05:30
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: [
// Best practice: https://github.com/babel/babel/issues/7789
'>=1%',
'not ie 11',
'not op_mini all'
]
}
}
]
]
};