2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00
Files
bootstrap/.babelrc.js
T
2020-03-25 22:32:37 +02:00

16 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'
]
};