naive-ui/babel.config.js
2020-12-05 20:00:57 +08:00

12 lines
185 B
JavaScript

// the file is used for jest testing & site building
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: 'defaults, not IE 11'
}
]
]
}