humus-old/babel.server.config.js

16 lines
265 B
JavaScript
Raw Normal View History

2019-05-05 17:03:15 -05:00
const common = require('./babel.common.config');
module.exports = function(api) {
const config = common(api);
// Presets.
config.presets.push([
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
]);
return config;
}