Skip to content

Commit

Permalink
chore: remove jsx plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Aug 20, 2024
1 parent 9aa272c commit eb69b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/benchmarks/src/normalizeIdentifiers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function normalizeIdentifiers(code: string): string {
}[] = []

// Parse the code and collect local identifiers
const ast = parse(code, { sourceType: 'module', plugins: ['jsx'] })
const ast = parse(code, { sourceType: 'module' })

const recurse = (
node: VariableDeclaration | Expression | LVal,
Expand Down

0 comments on commit eb69b4b

Please sign in to comment.