tsconfig-migrate is a utility for converting TypeScript compilerOptions to equivalent options for other transpilers like oxc and swc. Current version 0.2.0, released as an experimental tool. It helps developers migrate from tsc to faster alternatives by translating TSConfig settings into transformer-specific configurations. Differentiates by supporting multiple targets (oxc, swc) and being lightweight with zero dependencies.
npm install tsconfig-migrateNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Migrates TypeScript compilerOptions to swc configuration and transforms code.
Check the source or tests to see which options are mapped; verify output configuration manually.
Pin to a specific version and monitor releases for breaking changes.
Use subpath imports: 'tsconfig-migrate/oxc.js' or 'tsconfig-migrate/swc.js'.
Provide a complete compilerOptions object, or at least include target and module.
Use import migrate from 'tsconfig-migrate/oxc.js';
Use import migrate from '...' (default import).
No dependency data recorded yet.