Tree Shaking - Definição do Glossário de CI/CD
Tree shaking é a eliminação de código morto em tempo de build sobre um grafo de módulos ES: exports que nunca são importados são removidos do bundle final, reduzindo o tamanho do download e o tempo de parse.
Guias relacionados
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…