Skip to content

Instantly share code, notes, and snippets.

@samarpanda
Created November 20, 2019 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samarpanda/bd8c82dce6fa0a8b63f57f6ed966d3a0 to your computer and use it in GitHub Desktop.
Save samarpanda/bd8c82dce6fa0a8b63f57f6ed966d3a0 to your computer and use it in GitHub Desktop.
Improve modern code generation
  1. Javascript optimization
{
  "presets": [
    ["@babel/preset-env", {
      "targets": {
        "esmodules": true
      }
    }]
  ]
}

can be updated to below

{
  "presets": [
    "@babel/preset-modules"
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment