Transpiler - CI/CD Glossary Definition
A transpiler (source-to-source compiler) converts code from one high-level language or dialect to another (TypeScript→JavaScript, newer ES→older ES), commonly running as a build step before bundling.
Related guides
Minification - CI/CD Glossary DefinitionMinification shrinks code by removing whitespace, comments, and long names without changing behavior, so the…
Tree Shaking - CI/CD Glossary DefinitionTree shaking removes code that is never imported or used from a bundle by analyzing the module graph, shrinki…
JIT Compilation - CI/CD Glossary DefinitionJIT compilation translates bytecode into native machine code at run time, optimizing hot paths as the program…