From 5611e538e444d7cdaa0f314e306e85513c9486d8 Mon Sep 17 00:00:00 2001 From: blissful Date: Thu, 27 Jun 2024 14:07:12 -0400 Subject: [PATCH] typo --- src/posts/tex/frontend-build-systems.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/tex/frontend-build-systems.tex b/src/posts/tex/frontend-build-systems.tex index ece67a2..7a54b43 100644 --- a/src/posts/tex/frontend-build-systems.tex +++ b/src/posts/tex/frontend-build-systems.tex @@ -58,7 +58,7 @@ \subsection{Transpilation} browser-compatible module system. After browsers added widespread support for \href{https://exploringjs.com/es6/ch_modules.html}{ES6 Modules} (ESM) in 2018, transpilation to ESM has generally been recommended. ESM is furthermore easier to optimize and -\l{tree-shaking}{tree-shake} since its imports and exports are statically defined. +\hl{tree-shaking}{tree-shake} since its imports and exports are statically defined. The transpilers in common use today are Babel, SWC, and TypeScript Compiler.