skip to content

Search

typescript-go

2 min read

TypeScript-Go: A 10x Faster Compiler with Go

What is typescript-go

Today Anders Hejlsberg published a new blog post titled A 10x Faster TypeScript, introducing a new Go-based TypeScript compiler that achieves 10x faster compilation speeds with significantly reduced memory usage.

Why Rewrite the TypeScript Compiler

The current TypeScript compiler suffers from slow compilation speeds in large codebases due to its complex type system, a longstanding pain point in the TypeScript community. To improve development experience for large TypeScript projects, Anders decided to rewrite the compiler in Go.

Performance Benchmarks

CodebaseSize (LOC)CurrentNativeSpeedup
VS Code1,505,00077.8s7.5s10.4x
Playwright356,00011.1s1.1s10.1x
TypeORM270,00017.5s1.3s13.5x
date-fns104,0006.5s0.7s9.5x
tRPC (server + client)18,0005.5s0.6s9.1x
rxjs (observable)2,1001.1s0.1s11.0x

Community Reactions

As expected, in the typescript-go discussions, the most pressing question was: “Why Go instead of C#?” Given Anders Hejlsberg’s role as the creator of C#, many expected him to choose C# for the rewrite. C# offers strong performance and supports Native AOT, and being a Microsoft project itself, the choice of Go seemed puzzling.

Anders responded:

However, much of the community expressed disappointment. Many believe these challenges could have been addressed through collaboration with the .NET team, creating a win-win scenario that would advance both C#‘s Native AOT capabilities and TypeScript’s performance.

My Perspective

This project is an excellent initiative that will significantly enhance development experience for large TypeScript projects. However, the decision to avoid C# remains regrettable. Choosing C# could have demonstrated Microsoft’s commitment to its own language while accelerating progress on C#‘s Native AOT capabilities—a missed opportunity for mutual advancement.