We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1fcc3 commit ab6811bCopy full SHA for ab6811b
1 file changed
configureWebpack.js
@@ -412,9 +412,10 @@ async function configureWebpack(env) {
412
413
// Support classes level fields - must come after decorators plugin and be loose.
414
['@babel/plugin-proposal-class-properties', {loose: true}],
415
- // Must also configure private-methods plugin, even if we are not currently using,
416
- // to config the "loose" setting to match plugin-proposal-class-properties.
+ // Must also configure private-* plugins below to config the "loose" setting
+ // to match plugin-proposal-class-properties.
417
["@babel/plugin-proposal-private-methods", {loose: true}],
418
+ ["@babel/plugin-proposal-private-property-in-object", {loose: true}],
419
420
// Support `let x = foo?.bar`.
421
['@babel/plugin-proposal-optional-chaining'],
0 commit comments