0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/.babelrc.js

22 lines
375 B
JavaScript
Raw Normal View History

module.exports = {
presets: [
[
2017-11-05 19:03:33 +01:00
'@babel/env',
{
loose: true,
modules: false,
2017-11-05 19:03:33 +01:00
exclude: ['transform-typeof-symbol']
}
]
],
plugins: [
process.env.PLUGINS && 'transform-es2015-modules-strip',
'@babel/proposal-object-rest-spread'
2018-03-02 14:15:20 +01:00
].filter(Boolean),
env: {
test: {
plugins: [ 'istanbul' ]
}
}
};