mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
|
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'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
};
|