pankaryp/crana

View on GitHub
babel.config.json

Summary

Maintainability
Test Coverage
{
    "env": {
        "node": {
            "presets": [
                ["@babel/env" , {
                    "targets": {
                      "node": "current"
                    }
                }]
            ]
        },
        "browser": {
            "plugins": [
                "react-hot-loader/babel",
                ["@babel/proposal-decorators", { "legacy": true }],
                ["@babel/proposal-class-properties", { "loose": true }],
                "@babel/syntax-dynamic-import"
            ],
            "presets": [
                [
                    "@babel/env", {
                        "modules": false
                    }
                ],
                "@babel/react"
            ]
        }
    }
}