@babel/plugin-proposal-class-static-block
A class with a static block will be transformed into a static private property, whose initializer is the static block wrapped in an IIAFE (immediate invoked arrow function expression).
Example
class C {
  static #x = 42;
  static y;
  static {
    try {
      this.y = doSomethingWith(this.#x);
    } catch {
      this.y = "unknown";
    }
  }
}
will be transformed to
class C {
  static #x = 42;
  static y;
  static #_ = (() => {
    try {
      this.y = doSomethingWith(this.#x);
    } catch {
      this.y = "unknown";
    }
  })();
}
Because the output code includes private class properties, if you are already using other class feature plugins (e.g. `@babel/plugin-proposal-class-properties), be sure to place it before the others.
{
  "plugins": [
    "@babel/plugin-proposal-class-static-block",
    "@babel/plugin-proposal-class-properties"
  ]
}
Installation
npm install --save-dev @babel/plugin-proposal-class-static-block
Usage
With a configuration file (Recommended)
Without options:
{
  "plugins": ["@babel/plugin-proposal-class-static-block"]
}
With options:
{
  "plugins": [["@babel/plugin-proposal-class-static-block", { "loose": true }]]
}
Via CLI
babel --plugins @babel/plugin-proposal-class-static-block script.js
Via Node API
require("@babel/core").transform("code", {
  plugins: ["@babel/plugin-proposal-class-static-block"],
});