71 releases (45 breaking)

Uses new Rust 2024

new 0.61.2 Mar 23, 2025
0.60.0 Mar 18, 2025
0.44.0 Dec 25, 2024
0.38.0 Nov 26, 2024
0.22.1 Jul 28, 2024

#2468 in Web programming

Download history 775/week @ 2024-12-01 1190/week @ 2024-12-08 747/week @ 2024-12-15 697/week @ 2024-12-22 178/week @ 2024-12-29 319/week @ 2025-01-05 638/week @ 2025-01-12 699/week @ 2025-01-19 360/week @ 2025-01-26 418/week @ 2025-02-02 942/week @ 2025-02-09 585/week @ 2025-02-16 561/week @ 2025-02-23 1700/week @ 2025-03-02 1285/week @ 2025-03-09 913/week @ 2025-03-16

4,610 downloads per month

MIT license

73KB
1K SLoC

Oxc Transform

This is alpha software and may yield incorrect results, feel free to submit a bug report.

TypeScript and React JSX Transform

import assert from 'assert';
import oxc from 'oxc-transform';

const { code, declaration, errors } = oxc.transform(
  'test.ts',
  'class A<T> {}',
  {
    typescript: {
      declaration: true, // With isolated declarations in a single step.
    },
  },
);

assert.equal(code, 'class A {}\n');
assert.equal(declaration, 'declare class A<T> {}\n');
assert(errors.length == 0);

Isolated Declarations for Standalone DTS Emit

Conforms to TypeScript Compiler's --isolated-declaration .d.ts emit.

Usage

import assert from 'assert';
import oxc from 'oxc-transform';

const { map, code, errors } = oxc.isolatedDeclaration('test.ts', 'class A {}');

assert.equal(code, 'declare class A {}\n');
assert(errors.length == 0);

API

See index.d.ts.

export declare function transform(
  filename: string,
  sourceText: string,
  options?: TransformOptions,
): TransformResult;

export function isolatedDeclaration(
  filename: string,
  sourceText: string,
  options?: IsolatedDeclarationsOptions,
): IsolatedDeclarationsResult;

Dependencies

~11–18MB
~248K SLoC