Transpiler - CI/CD用語集の定義
トランスパイラー(source-to-source コンパイラ)は、コードをある高水準言語や方言から別のもの(TypeScript→JavaScript、新しい ES→古い ES)へ変換し、通常は bundling の前のビルドステップとして実行されます。
関連ガイド
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…