UNPKG

255 BJavaScriptView Raw
1'use strict'
2
3const modify = require('./modify')
4
5module.exports = modify('es2015', {
6 // remove commonjs transform
7 'transform-object-rest-spread': true,
8 'transform-es2015-modules-commonjs': false,
9
10 // add external helpers
11 'external-helpers': true
12})