Skip to content

Commit ad05a3a

Browse files
committed
chore: babel loose mode config additions
this lets `npx jest-codemods` run
1 parent a9601ce commit ad05a3a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

babel.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,9 @@ module.exports = {
1414
],
1515
},
1616
},
17-
plugins: [['@babel/plugin-proposal-private-property-in-object', { loose: true }]],
17+
plugins: [
18+
['@babel/plugin-proposal-private-property-in-object', { loose: true }],
19+
['@babel/plugin-proposal-class-properties', { loose: true }],
20+
['@babel/plugin-proposal-private-methods', { loose: true }],
21+
],
1822
};

0 commit comments

Comments
 (0)