hacks/steem-claim-account/babel.config.js

11 lines
163 B
JavaScript
Raw Permalink Normal View History

2018-10-24 12:22:52 +00:00
module.exports = function (api) {
const presets = [ "@babel/preset-env" ];
const plugins = [ ];
api.cache(true);
return {
presets,
plugins
};
}