We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff0524 commit cb9a1c1Copy full SHA for cb9a1c1
babel.config.js
@@ -22,6 +22,13 @@ module.exports = {
22
"@babel/plugin-proposal-object-rest-spread",
23
"@babel/plugin-proposal-optional-chaining",
24
"@babel/plugin-proposal-nullish-coalescing-operator",
25
+
26
+ // transform logical assignment (??=, ||=, &&=). preset-env doesn't
27
+ // normally bother with these (presumably because all the target
28
+ // browsers support it natively), but they make our webpack version (or
29
+ // something downstream of babel, at least) fall over.
30
+ "@babel/plugin-proposal-logical-assignment-operators",
31
32
"@babel/plugin-syntax-dynamic-import",
33
"@babel/plugin-transform-runtime",
34
],
0 commit comments