How the compiler works in Angular? Especially, Anguar 13+ and AOT.
Google as actually posted a detailed article on their official blog about Angular compiler.
https://blog.angular.io/how-the-angular-compiler-works-42111f9d2549
Compiler can be JIT or AOT.The AOT(ahead-of-time) compiler converts Angular HTML and TypeScript code into JavaScript code during the build process. Compiling application during the build process provides a faster rendering in the browser.