naive-ui/babel.config.js

12 lines
185 B
JavaScript
Raw Normal View History

2020-12-04 19:40:17 +08:00
// the file is used for jest testing & site building
2019-06-03 23:42:44 +08:00
module.exports = {
presets: [
2020-12-05 20:00:57 +08:00
[
'@babel/preset-env',
{
targets: 'defaults, not IE 11'
}
]
]
2019-06-03 23:42:44 +08:00
}