naive-ui/babel.config.js

16 lines
406 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 = {
2021-02-17 14:55:44 +08:00
presets:
process.env.NODE_ENV === 'test'
2021-10-27 03:06:24 +08:00
? [['@babel/preset-env', { targets: { node: 'current' } }]]
2021-02-17 14:55:44 +08:00
: [
[
'@babel/preset-env',
{
targets: '>2%, not IE 11'
}
]
2021-02-17 14:55:44 +08:00
]
2019-06-03 23:42:44 +08:00
}