naive-ui/babel.config.js

13 lines
254 B
JavaScript
Raw Normal View History

2020-12-04 19:40:17 +08:00
// the file is used for jest testing & site building
// > 2%, make template string not compiled to concat, since it's not fast
2019-06-03 23:42:44 +08:00
module.exports = {
presets: [
2020-12-05 20:00:57 +08:00
[
'@babel/preset-env',
{
targets: '>2%, not IE 11'
2020-12-05 20:00:57 +08:00
}
]
]
2019-06-03 23:42:44 +08:00
}