Files
oxc-guard 60fa13878c release(crates): oxc v0.149.0 (#26397)
### 💥 BREAKING CHANGES

- 66744f0 parser: [**BREAKING**] Rename `panicked` to `fatal_error` in `ParserReturn` (#26382) (overlookmotel)
- 2c9a947 parser: [**BREAKING**] Reduce `MAX_LEN` to 256 bytes below `u32::MAX` (#26352) (overlookmotel)

### 🚀 Features

- 32bdc5b allocator: Construct `ArenaHashSet` with any `Default` hasher (#26372) (Dunqing)
- a17de58 minifier: Process of return/throw in non last position and fix async * inlining (#26214) (Armano)
- bfb4c57 parser: Distinguish unapplied no-side-effects comments (#26120) (碳苯 Carbon)
- 1d9b9d3 ast: Add `GetNodeId` trait (#26145) (camc314)

### 🐛 Bug Fixes

- b156333 codegen: Order accessibility before abstract on accessors (#26392) (camc314)
- 116c8b8 transformer/class-properties: Keep private methods in class-expression scope (#26308) (Changsu Seong)
- 1400a0f parser: Require a string source after `export ... from` (#26389) (camc314)
- 2da73b7 codegen: Print matching quoted import names as identifiers (#26386) (camc314)
- 0a81d29 codegen: Preserve private-in left operand precedence (#26383) (camc314)
- 9a02337 parser: Correctly round large nondecimal literals (#26379) (camc314)
- 3d95477 transformer: Gate async-only rewrites by owning transform (#26326) (Dunqing)
- f45a9ee transformer: Limit arguments capture to lowered async functions (#26317) (Dunqing)
- 789969f transformer: Gate this capture by owning async transform (#26227) (Dunqing)
- affeb14 minifier: Mangle class private members in Node API (#26118) (碳苯 Carbon)
- 8b35abd semantic: Detect duplicate private class elements (#26361) (camc314)
- 457ed57 semantic: Reject await and yield in rest parameter defaults (#26359) (camc314)
- 4b89c7b semantic: Reject jumps across arrow functions (#26357) (camc314)
- c966aca parser: Do not omit `<` token opening type argument list (#26328) (overlookmotel)
- f07dca5 ast_visit: Add the trimmed prefix length to translation table offsets (#26173) (Bharadwaj Pendyala)
- 3ab9bd1 parser: Do not re-lex template substitution tail after fatal error (#26230) (overlookmotel)
- 07851b9 parser: Fix debug assert failure when lexer error with tokens enabled (#26229) (overlookmotel)
- 00dea7a allocator: Gate `Allocator::data_end_ptr` behind fixed_size feature (#26248) (camc314)
- 853ffab ecmascript: Avoid `charAt` panic on 32-bit (#26244) (camc314)
- 34feccb runtime: Remove stale regenerator exports (#26243) (camc314)

###  Performance

- 34a242e minifier: Use `Ident` for property mangler (#26334) (sapphi-red)
- 5303f5c minifier: Unify merging of last expression into target sequence (#26264) (Armano)
- 2ca7d29 minifier: Consume nodes in minimize_statements in reverse order (#26258) (Armano)
- d2354b4 mangler: Use `Ident` for variable names to keep (#26333) (sapphi-red)
- 5b3e335 minifier: Use `Ident` instead of `Str` in `KeepVar` (#26332) (sapphi-red)
- 51366fb minifier: Use `IdentHashSet` in `PrivateMemberUsageStack` (#26331) (sapphi-red)
- d19c42a minifier: Merge nested if stmt in place instead of creating dummies (#26351) (Armano)
- 356def6 parser: Shrink annotation comment ranges (#26356) (overlookmotel)
- a5be474 parser: Shave instruction off `parse_jsx_element_name` (#26355) (overlookmotel)
- 9780663 parser: Remove fatal error guard from `parse_jsx_element_name` (#26354) (overlookmotel)
- 766e12f parser: Remove `token` field from `LexerCheckpoint` (#26350) (overlookmotel)

### 📚 Documentation

- d4b4e61 transformer: Document ES2015 target floor (#26378) (Dunqing)
- 67dd054 ast_visit: Correct out-of-date comments on `Utf8ToUtf16` converter (#26285) (overlookmotel)
- a8ed2a7 minifier: Fix stale validation instructions (#26251) (camc314)
2026-09-07 14:29:34 +00:00
..

Oxc Transform React

Native Node.js bindings for Oxc's React transform pipeline. It combines:

  • Oxc's experimental Rust port of React Compiler
  • TypeScript syntax removal
  • JSX transformation with automatic and classic runtimes
  • React Fast Refresh
  • These transforms can also be run individually

React Compiler runs first, then Oxc removes TypeScript syntax and applies the configured JSX and Fast Refresh transforms.

This package and Oxc's React Compiler port are experimental. Review generated output before using it in production.

Usage

import { transformSync } from "oxc-transform-react";

const result = transformSync(
  "Component.tsx",
  `
    export function Component({ name }: { name: string }) {
      return <div>Hello {name}</div>;
    }
  `,
);

if (result.fatal) {
  console.error(result.errors);
} else {
  console.log(result.code);
}

React Compiler is enabled by default with a React 19 target, and JSX uses the automatic runtime. Enable React Fast Refresh with jsx.refresh. The filename determines whether the input is parsed as JavaScript, JSX, TypeScript, or TSX.

API

transformSync(
  filename: string,
  sourceText: string,
  options?: TransformOptions,
): TransformResult;

transform(
  filename: string,
  sourceText: string,
  options?: TransformOptions,
): Promise<TransformResult>;

The asynchronous transform runs on a worker-pool thread. It is useful when processing files concurrently, but can be slower for a single small file.

TransformResult contains code, an optional source map, errors, and a fatal flag. Recoverable React Compiler bail-outs are omitted in every output mode, matching Babel's default logger: null. Fatal diagnostics appear in errors without producing code.

Options

All options are optional. Defaults in the tables below apply when a property is omitted.

Transform options

Option Type Default Description
lang string Inferred from filename Parse as "js", "jsx", "ts", "tsx", or "dts".
sourceType string Inferred Parse as "script", "module", "commonjs", or "unambiguous".
sourcemap boolean false Generate a source map in result.map.
jsx "preserve" or JsxOptions Automatic runtime Configure the JSX transform. Set to "preserve" to leave JSX syntax in the output.
reactCompiler boolean or ReactCompilerOptions true Configure React Compiler. Set to false to disable it or true to enable it with the default options.

JSX options

Option Type Default Description
runtime "classic" or "automatic" "automatic" Select the JSX runtime. The automatic runtime imports JSX factories; the classic one does not.
development boolean false Emit development information such as __source and __self.
throwIfNamespace boolean true Report an error for XML namespace syntax such as <svg:path>.
pure boolean true Add pure annotations to JSX and top-level React calls for tree shaking.
importSource string "react" Set the package imported by the automatic runtime.
pragma string "React.createElement" Set the JSX factory used by the classic runtime.
pragmaFrag string "React.Fragment" Set the JSX fragment used by the classic runtime.
refresh boolean or ReactRefreshOptions false Enable React Fast Refresh, optionally with custom identifiers and signature output.

refresh: true uses these defaults:

Option Type Default Description
refreshReg string "$RefreshReg$" Set the Refresh registration identifier.
refreshSig string "$RefreshSig$" Set the Refresh signature identifier.
emitFullSignatures boolean false Emit readable hook signatures instead of compact hashes.

React Compiler options

Option Type Default Description
compilationMode string "infer" Select which functions to compile: "infer", "syntax", "annotation", or "all".
panicThreshold string "none" Select which diagnostics abort the transform: "none", "critical_errors", or "all_errors".
target string or ReactCompilerMetaTarget "19" Target React "17", "18", "19", or a Meta-internal runtime.
gating ReactCompilerGating Unset Emit compiled and original functions behind an imported feature flag.
dynamicGating ReactCompilerDynamicGating Unset Resolve flags in "use memo if(...)" directives from an imported module. A directive takes precedence over gating.
noEmit boolean false Request lint mode without applying React Compiler output. Deprecated; use outputMode: "lint".
outputMode string "client" Select "client", "ssr", or "lint" React Compiler output.
eslintSuppressionRules string[] React Hooks rules ESLint or Oxlint rule names whose matching suppression comments opt a function out. Defaults to react-hooks/exhaustive-deps and react-hooks/rules-of-hooks; [] disables this behavior.
flowSuppressions boolean true Treat $FlowFixMe..., $FlowExpectedError, or $FlowIssue tags immediately followed by [react-rule as compiler opt-outs.
ignoreUseNoForget boolean false Compile functions carrying "use no memo" or "use no forget".
customOptOutDirectives string[] Unset Add directive strings that opt a function or module out of compilation.
sources string[] All except node_modules Only run React Compiler when the filename contains one of the provided strings. Providing this option replaces the default filter.
environment ReactCompilerEnvironmentOptions Compiler defaults Override compiler feature flags and validation settings.

Despite its upstream-compatible name, eslintSuppressionRules recognizes both ESLint and Oxlint comments: eslint-disable, eslint-disable-next-line, eslint-enable, oxlint-disable, oxlint-disable-next-line, and oxlint-enable.

outputMode: "ssr" takes precedence over noEmit. Otherwise, noEmit: true forces lint output, including when outputMode: "client" is set. Lint output suppresses only React Compiler rewrites; the downstream Oxc transform still removes TypeScript syntax and applies the configured JSX transform.

The object-valued target and gating options have these shapes:

interface ReactCompilerMetaTarget {
  kind: "donotuse_meta_internal";
  runtimeModule?: string; // Defaults to "react".
}

interface ReactCompilerGating {
  source: string;
  importSpecifierName: string;
}

interface ReactCompilerDynamicGating {
  source: string;
}

React Compiler environment options

Unset environment properties retain the compiler defaults shown here.

Option Type Default Description
customMacros string[] Unset Name macro-like functions whose calls and operands must stay together during compilation.
enableResetCacheOnSourceFileChanges boolean Unsupported Accepted for upstream option compatibility but currently has no effect.
enablePreserveExistingMemoizationGuarantees boolean true Use existing useMemo and useCallback information to preserve referential-equality behavior.
validatePreserveExistingMemoizationGuarantees boolean true Validate that compilation preserves existing manual memoization guarantees.
validateExhaustiveMemoizationDependencies boolean false Validate that manual memoization dependency arrays are exhaustive.
validateExhaustiveEffectDependencies string "off" Validate effect dependencies with "off", "all", "missing-only", or "extra-only".
enableOptionalDependencies boolean Unsupported Accepted for upstream option compatibility but currently has no effect.
enableNameAnonymousFunctions boolean false Give generated or outlined anonymous functions inferred names.
validateHooksUsage boolean true Validate that components partially satisfy the Rules of Hooks.
validateRefAccessDuringRender boolean true Validate that ref values are not accessed during render.
validateNoSetStateInRender boolean true Validate that state setters are not called unconditionally during render.
enableUseKeyedState boolean false Recommend keyed state when reporting render-time state resets.
validateNoSetStateInEffects boolean false In lint mode, validate that state setters are not called synchronously in effects.
validateNoDerivedComputationsInEffects boolean false Validate that effects are not used to calculate data that can be derived during render.
validateNoDerivedComputationsInEffectsExp boolean false In lint mode, enable the experimental form of derived-computation validation.
validateNoJsxInTryStatements boolean false In lint mode, validate against creating JSX inside try blocks.
validateStaticComponents boolean false In lint mode, validate against dynamically creating components during render.
validateNoCapitalizedCalls string[] Unset Validate capitalized function calls. The array adds allowed names; [] enables validation without extra names.
validateBlocklistedImports string[] Unset Bail out files that import any listed module.
validateSourceLocations boolean Unsupported Accepted for upstream option compatibility but currently has no effect.
validateNoImpureFunctionsInRender boolean false Validate against impure function calls during render.
validateNoFreezingKnownMutableFunctions boolean Unsupported Accepted for upstream option compatibility, but validation currently runs regardless of its value.
enableAssumeHooksFollowRulesOfReact boolean true Assume hook arguments and return values may be memoized and are therefore frozen.
enableTransitivelyFreezeFunctionExpressions boolean true Treat values captured by functions passed to React as transitively frozen.
enableFunctionOutlining boolean true Outline anonymous functions that do not capture local variables.
enableJsxOutlining boolean false Outline nested JSX into separately memoizable components.
assertValidMutableRanges boolean Unsupported Accepted for upstream option compatibility but currently has no effect.
enableCustomTypeDefinitionForReanimated boolean false Use React Native Reanimated-aware type definitions.
enableTreatRefLikeIdentifiersAsRefs boolean true Treat ref-like identifiers with a current property as React refs.
enableTreatSetIdentifiersAsStateSetters boolean false Treat called identifiers whose names begin with set as state setters.
validateNoVoidUseMemo boolean false Validate that useMemo callbacks return a value.
enableAllowSetStateFromRefsInEffects boolean true Allow recognized ref-based state-setting patterns in effects.
enableVerboseNoSetStateInEffect boolean false Emit more detailed diagnostics for state setters called in effects.
enableForest boolean false Enable the experimental Forest reactive-scope optimization mode.

The default React 19 target imports react/compiler-runtime. Targets 17 and 18 import react-compiler-runtime, which must be available to the generated code.

Callback-valued options such as logger, function-valued sources, and type provider callbacks are not supported by the native binding. sources accepts an array of filename substrings instead.

Notes

  • TypeScript support removes syntax only. It does not type-check or emit declarations.
  • jsx.refresh emits Fast Refresh registration and signature instrumentation. The bundler or development server must provide the Refresh runtime and HMR integration.
  • The transform stages are independent. reactCompiler: false still removes TypeScript and transforms JSX, while jsx: "preserve" retains JSX without disabling React Compiler. Recoverable compiler bail-outs still run the downstream TypeScript and JSX transforms.

See index.d.ts for the generated TypeScript declarations and the Oxc JSX documentation for more JSX examples.