TypeScript to JavaScript transpiler in Kotlin Multiplatform
TypeScript has become the lingua franca for large-scale JavaScript development, but transpiling TypeScript to JavaScript typically requires a Node.js-based toolchain. The xemantic-typescript-compiler provides a Kotlin Multiplatform implementation of a TypeScript to JavaScript transpiler that runs natively on the JVM and as a native binary on Linux and macOS — no Node.js or JavaScript runtime required.
The compiler is available as a command-line tool and as a JVM library.
Pre-built native binaries for Linux and macOS are available from the releases page.
xemantic-typescript-compiler <input.ts> [output.js]java -jar xemantic-typescript-compiler.jar <input.ts> [output.js]