Tree Shaking - CI/CD用語集の定義
Tree shakingは、ESモジュールグラフに対するbuild時のデッドコード除去です。一度もimportされないexportは最終的なbundleから削除され、ダウンロードサイズとparse時間を削減します。
関連ガイド
Minification - CI/CD Glossary DefinitionMinification shrinks code by removing whitespace, comments, and long names without changing behavior, so the…
Bundle Splitting - CI/CD Glossary DefinitionBundle splitting breaks a build into multiple chunks so the browser loads only what a page needs, improving i…
Transpiler - CI/CD Glossary DefinitionA transpiler translates source from one high-level language to another - TypeScript to JavaScript, modern JS…