summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/test/node/babel.config.js
blob: 2a95c9f71cf405317ac2deaf7e17060466667eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

module.exports = {
  plugins: [
    "@babel/plugin-proposal-class-properties",
    "@babel/plugin-proposal-optional-chaining",
    "@babel/plugin-proposal-nullish-coalescing-operator",
    "transform-amd-to-commonjs",
  ],
};