mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
20 lines
305 B
JavaScript
20 lines
305 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
loose: true,
|
|
modules: false,
|
|
exclude: ['transform-typeof-symbol']
|
|
}
|
|
]
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-proposal-object-rest-spread'
|
|
],
|
|
env: {
|
|
test: {
|
|
plugins: [ 'istanbul' ]
|
|
}
|
|
}
|
|
};
|