deno compile optimizations
i'm relatively new to deno and find the compilation part interesting. reading the reference, it seems to bundle the deno runtime in the binary. my question is, is there anything else the compilation does? are there any form of ahead-of-time optimizations done?
i'm looking into compiling my hono apps and am wondering of all the potential benefits of doing so. thank you.
1 Reply
It transpiles
.ts/tsx
to .js/jsx
but it does no further ahead-of-time optimizations to your code.