1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/.babelrc.js
2020-03-25 22:32:37 +02:00

15 lines
250 B
JavaScript

module.exports = {
presets: [
[
'@babel/preset-env',
{
loose: true,
modules: false,
exclude: ['transform-typeof-symbol']
}
]
],
plugins: [
'@babel/plugin-proposal-object-rest-spread'
]
};