2019-03-20 15:28:18 -05:00
|
|
|
module.exports = function (api) {
|
|
|
|
api.cache(true);
|
|
|
|
|
|
|
|
const presets = [
|
|
|
|
'@babel/preset-react',
|
|
|
|
'@babel/preset-env',
|
|
|
|
];
|
|
|
|
const plugins = [
|
|
|
|
'@babel/plugin-proposal-object-rest-spread',
|
2019-04-12 11:04:59 -05:00
|
|
|
'react-hot-loader/babel',
|
2019-03-20 15:28:18 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
return {
|
|
|
|
presets,
|
|
|
|
plugins
|
|
|
|
};
|
|
|
|
}
|