Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Add classPrivateMethods plugin to babel parser #1249

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/detector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ export function parse(body: string) {
return babel.parse(body, {
allowImportExportEverywhere: true,
allowReturnOutsideFunction: true,
plugins: ['estree', 'bigInt', 'classPrivateProperties', 'classProperties'],
plugins: ['estree', 'bigInt', 'classPrivateProperties', 'classProperties', 'classPrivateMethods'],
});
}

Expand Down