Skip to content

Instantly share code, notes, and snippets.

@LUN7
Created January 3, 2021 13:25
Show Gist options
  • Save LUN7/ca59f53f93e214c27a2cdaefc087f09c to your computer and use it in GitHub Desktop.
Save LUN7/ca59f53f93e214c27a2cdaefc087f09c to your computer and use it in GitHub Desktop.
react babel config
{
presets: [
[
"@babel/preset-env",
{
modules: false,
targets: {
browsers: [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Android versions",
"last 2 ChromeAndroid versions",
],
},
},
],
"@babel/preset-react",
],
plugins: ["@babel/plugin-proposal-class-properties"],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment