Skip to content

Commit

Permalink
Do not use babel loose mode, to resolve warning
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Jul 4, 2024
1 parent 071c03a commit 9694c6d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
module.exports = {
"plugins": [
["@babel/plugin-transform-private-methods", { "loose": true }],
["@babel/plugin-transform-private-property-in-object", { "loose": true }]
["@babel/plugin-transform-private-methods", { loose: "false" }],
["@babel/plugin-transform-private-property-in-object", { loose: "false" }],
["@babel/plugin-transform-class-properties", { loose: "false" }],
],
"presets": [
[
Expand Down

0 comments on commit 9694c6d

Please sign in to comment.