Revision 190d2351898db2e19766c3387e057c36277d9046 authored by tonypowa on 02 August 2023, 20:26:16 UTC, committed by grafana-delivery-bot[bot] on 02 August 2023, 20:27:41 UTC
updated endpoint authentication

(cherry picked from commit 956b865a2ecb134aff55f1a8dda45655470201df)
1 parent 3cdd6c5
Raw File
babel.config.json
{
  "babelrc": false,
  // Note: order is bottom-to-top and/or right-to-left
  "presets": [
    [
      "@babel/preset-env",
      {
        "bugfixes": true,
        "browserslistEnv": "dev",
        "useBuiltIns": "entry",
        "corejs": "3.10"
      }
    ],
    [
      "@babel/preset-typescript",
      {
        "allowNamespaces": true,
        "allowDeclareFields": true
      }
    ],
    [
      "@babel/preset-react",
      {
        "runtime": "automatic"
      }
    ]
  ],
  "plugins": [
    [
      "@babel/plugin-transform-typescript",
      {
        "allowNamespaces": true,
        "allowDeclareFields": true
      }
    ],
    // added to mitigate https://github.com/babel/babel/issues/14289
    // package (and following line) can be removed once the issue is fixed and released
    "@babel/plugin-proposal-class-properties",
    ["@babel/plugin-proposal-object-rest-spread", { "loose": true }],
    "@babel/plugin-transform-react-constant-elements",
    "@babel/plugin-proposal-nullish-coalescing-operator",
    "@babel/plugin-proposal-optional-chaining",
    "@babel/plugin-syntax-dynamic-import", // needed for `() => import()` in routes.ts
    "angularjs-annotate",
    "macros"
  ],
  "env": {
    "production": {
      "presets": [
        [
          "@babel/preset-env",
          {
            "browserslistEnv": "production"
          }
        ]
      ]
    },
    "hot": {
      "plugins": ["react-refresh/babel"]
    }
  }
}
back to top