private-dreamnet/dreamtime

View on GitHub
src/.babelrc

Summary

Maintainability
Test Coverage
{
  "presets": [
    [
      "@babel/preset-env",
      {
        "targets": "current node"
      }
    ]
  ],
  "plugins": [
    "lodash",
    "@babel/plugin-proposal-class-properties",
    "@babel/plugin-proposal-export-default-from",
    "@babel/plugin-proposal-optional-chaining",
    [
      "module-resolver",
      {
        "root": [
          "./"
        ],
        "alias": {
          "~": "./",
          "test": "./test"
        }
      }
    ]
  ]
}