Skip to main content
Development 2 min read 223 views

Microsoft Targets Early 2026 for TypeScript 7.0 Native Port

Project Corsa, Microsoft's effort to rewrite TypeScript in Go for dramatic performance improvements, is on track for an early 2026 release alongside TypeScript 6.0.

TD

TechDrop Editorial

Share:

Microsoft is targeting early 2026 for the release of TypeScript 6.0 and TypeScript 7.0, with the latter representing a fundamental rewrite of the compiler. Project Corsa, as the native port is called, rebuilds TypeScript in Go for dramatic performance improvements.

Project Corsa: A Ground-Up Rewrite

TypeScript 7.0, codenamed Project Corsa, represents Microsoft's most ambitious TypeScript undertaking since the language's creation. Key aspects include:

  • Written in Go: The new compiler leverages Go's performance characteristics and concurrency model
  • Dramatically faster compilation: Early benchmarks suggest 10x or greater speed improvements on large codebases
  • Reduced memory usage: The native implementation uses memory more efficiently than the current JavaScript-based compiler

TypeScript 5.9 Current Features

While waiting for the major releases, TypeScript 5.9 (released August 2025) delivered practical improvements:

  • Deferred module evaluation: The import defer syntax provides better control over when modules execute
  • Streamlined tsc --init: More prescriptive defaults for new projects
  • Expandable hovers: Deeper inline type exploration in IDEs

Migration Considerations

Microsoft has committed to backward compatibility, allowing teams to adopt the new compiler at their own pace. Existing TypeScript codebases should compile without changes, though some edge cases may require adjustments.

Industry Impact

Faster compilation times could significantly improve developer experience, especially for large enterprise codebases where current build times can exceed several minutes. The performance improvements may also enable new use cases for TypeScript in performance-sensitive environments.

Related Articles