mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-28 10:24:19 +01:00
ad8d3a6c54
* remove plugin-proposal-object-rest-spread * add bugfixes * `exclude: ['transform-typeof-symbol']` did nothing with our config
18 lines
224 B
JavaScript
18 lines
224 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
loose: true,
|
|
bugfixes: true,
|
|
modules: false
|
|
}
|
|
]
|
|
],
|
|
env: {
|
|
test: {
|
|
plugins: [ 'istanbul' ]
|
|
}
|
|
}
|
|
};
|