Transpiler - Definição do Glossário de CI/CD
Um transpiler (compilador source-to-source) converte código de uma linguagem ou dialeto de alto nível para outro (TypeScript→JavaScript, ES mais novo→ES mais antigo), geralmente rodando como um passo de build antes do bundling.
Guias relacionados
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…