@babel/plugin-syntax-top-level-await

NOTE: This plugin is included in @babel/preset-env, in ES2022

Syntax only

This plugin only enables parsing of this feature. Babel doesn’t support transforming top-level await, but you can use Rollup’s experimentalTopLevelAwait or webpack@5’s experiments.topLevelAwait options.

  1. const val = await promise;
  2. export { val };

Installation

  1. npm install --save-dev @babel/plugin-syntax-top-level-await

Usage

  1. {
  2. "plugins": ["@babel/plugin-syntax-top-level-await"]
  3. }

Via CLI

  1. babel --plugins @babel/plugin-syntax-top-level-await script.js

Via Node API

  1. require("@babel/core").transformSync(code, {
  2. plugins: ["@babel/plugin-syntax-top-level-await"],
  3. });