Skip to content

Instantly share code, notes, and snippets.

@AdamRamberg
Created July 21, 2018 16:07
Show Gist options
  • Save AdamRamberg/5390cef17c6eddc690b8f7a96b4231a5 to your computer and use it in GitHub Desktop.
Save AdamRamberg/5390cef17c6eddc690b8f7a96b4231a5 to your computer and use it in GitHub Desktop.
react-from-scratch babel.config.js
module.exports = api => {
api.cache.invalidate(() => process.env.NODE_ENV === 'production');
return {
presets: [
[
'@babel/preset-env',
{
useBuiltIns: 'usage',
},
],
'@babel/preset-react',
],
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment