@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
This bugfix plugin transforms optional chaining operators to workaround a V8 bug affecting versions 8.0 to 9.0.
tip
This plugin is included in @babel/preset-env
. Set the bugfixes
option to true
so Babel will automatically enable this plugin for you when your targets
are affected by the browser bug.
Installation
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
yarn add --dev @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
pnpm add --save-dev @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
Usage
With a configuration file (Recommended)
babel.config.json
{
"plugins": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"]
}
Via CLI
Shell
babel --plugins @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining script.js
Via Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"],
});