AugurProject/augur-ui

View on GitHub
babel.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  presets: [
    [
      "@babel/preset-env",
      {
        "targets": "chrome >= 41"
      }
    ],
    "@babel/preset-react"
  ],
  plugins: [
    "@babel/plugin-transform-runtime",
    "@babel/plugin-proposal-class-properties",
    "@babel/plugin-syntax-dynamic-import"
  ]
};