IT lexicon Programming Transpiler

Transpiler

Programming På svenska → Updated: 2026-05-24

"Source-to-source compiler" — translates between two high-level languages. TypeScript → JavaScript, Sass → CSS, CoffeeScript → JS, Kotlin Multiplatform → JS.

The term is jargon; academically it's just a compiler. Babel is the JS ecosystem king — translates modern JS to older JS versions via plugins. SWC and esbuild are faster alternatives (Rust/Go). The TypeScript compiler (tsc) is primarily a typechecker; the transpilation step is "easy".

← Back to the lexicon