rofrischmann/fela

View on GitHub
packages/fela-plugin-fallback-value/.babelrc

Summary

Maintainability
Test Coverage
{
  "presets": [
    [
      "@babel/preset-env",
      {
        "modules": false
      }
    ]
  ],
  "env": {
    "production": {
      "plugins": ["transform-dev-warning"]
    },
    "test": {
      "plugins": [
        "@babel/plugin-transform-modules-commonjs"
      ]
    },
    "commonjs": {
      "presets": [
        [
          "@babel/preset-env",
          {
            "modules": "commonjs"
          }
        ]
      ]
    }
  }
}