Skip to content

Commit

Permalink
Merge pull request #2910 from hapijs/fix/optional-chaining
Browse files Browse the repository at this point in the history
fix: transpile optional chaining
  • Loading branch information
Marsup committed Feb 19, 2023
2 parents 79a2af4 + 5036947 commit 67b0923
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion browser/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ module.exports = {
]
],
plugins: [
'@babel/plugin-proposal-class-properties'
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator',
]
}
}
Expand Down

0 comments on commit 67b0923

Please sign in to comment.