mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
21 lines
375 B
JavaScript
21 lines
375 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
loose: true,
|
|
modules: false,
|
|
exclude: ['transform-typeof-symbol']
|
|
}
|
|
]
|
|
],
|
|
plugins: [
|
|
process.env.PLUGINS && 'transform-es2015-modules-strip',
|
|
'@babel/proposal-object-rest-spread'
|
|
].filter(Boolean),
|
|
env: {
|
|
test: {
|
|
plugins: [ 'istanbul' ]
|
|
}
|
|
}
|
|
};
|