If you only have TypeScript installed for Visual Studio then:

  1. Start the Visual Studio Command Prompt
  2. Type tsc -v and hit Enter

Visual Studio 2017 versions 15.3 and above bind the TypeScript version to individual projects, as this answer points out:

  1. Right click on the project node in Solution Explorer
  2. Click Properties
  3. Go to the TypeScript Build tab
Answer from basarat on Stack Overflow
🌐
GitHub
github.com › microsoft › typescript › releases
Releases · microsoft/TypeScript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output. - Releases · microsoft/TypeScript
Author   microsoft
🌐
Graphite
graphite.com › guides › typescript-versioning
TypeScript versioning
To stay informed about the latest TypeScript versions, you can follow the official TypeScript website and the TypeScript GitHub repository. These sources provide release notes, documentation updates, and information about breaking changes and new features.
🌐
TypeScript
typescriptlang.org › docs › handbook › release-notes › typescript-5-8.html
TypeScript: Documentation - TypeScript 5.8
TypeScript 5.8 introduces a stable --module node18 flag. For users who are fixed on using Node.js 18, this flag provides a stable point of reference that does not incorporate certain behaviors that are in --module nodenext.
🌐
Versio
versio.io › en › product-release-end-of-life-eol-microsoft-typescript.html
TypeScript: Releases, patches & end-of-life
Obtain all lifecycle information relevant to security for the TypeScript from the Microsoft, including versions, patches and end-of-life data.
Top answer
1 of 16
292

If you only have TypeScript installed for Visual Studio then:

  1. Start the Visual Studio Command Prompt
  2. Type tsc -v and hit Enter

Visual Studio 2017 versions 15.3 and above bind the TypeScript version to individual projects, as this answer points out:

  1. Right click on the project node in Solution Explorer
  2. Click Properties
  3. Go to the TypeScript Build tab
2 of 16
83

Two years after the question was asked, using Visual Studio Command Prompt still did not produce right answer for me. But the usual Help|About window seems working these days:

UPDATE (June 2017):

  1. VS 2013 does NOT show this info. (Later note: VS 2017 Enterprise edition does not show this info either).

  2. VS uses Microsoft Build Engine (MSBuild) to compile Typescript files. MSBuild can support several major releases of Typescript, but About window shows only the latest one.

Here is how to get to the bottom of it:

A. To check which versions of Typescript are installed with your Visual Studio/MSBuild, inspect contents of C:\Program Files (x86)\Microsoft SDKs\TypeScript folder. For example, I have versions 1.0, 1.8 and 2.2:

B. Check which version of Typescript is requested by your project. In *.csproj file, look for <TypeScriptToolsVersion> tag, or you can add it if it is missing, like this


<PropertyGroup> ... <TypeScriptToolsVersion>1.8</TypeScriptToolsVersion> ... </PropertyGroup>

C. Finally, you can check, which version of Typescript is actually used by MSBuild. In TOOLS | Options | Projects and Solutions | Build and Run set MSBuild project output verbosity to Detailed:

Then build your project and inspect the output: you should see the reference to one of Typescript folders described in (A).

🌐
TypeScript ESlint
typescript-eslint.io › users › releases
Releases | typescript-eslint
The only exception to the automated publishes described above is when we are in the final phases of creating the next major version of the libraries - e.g. going from 1.x.x to 2.x.x. During these periods, we manually publish canary releases until we are happy with the release and promote it to latest. To try out the latest canary versions of typescript-eslint, install @typescript-eslint/eslint-plugin@canary and @typescript-eslint/parser@canary.
Find elsewhere
🌐
Medium
medium.com › @onix_react › whats-new-in-typescript-5-8-32d0c7696103
What’s new in TypeScript 5.8
January 31, 2025 - TypeScript 5.8 beta introduces a range of new features and refinements aimed at improving type safety, developer experience, and runtime compatibility. This release enhances how return types are checked with conditional and indexed access types, ...
🌐
TypeScript
typescriptlang.org › docs › handbook › release-notes › typescript-5-9.html
TypeScript: Documentation - TypeScript 5.9
TypeScript 5.9 brings a stable option for these settings called node20, intended to model the behavior of Node.js v20. This option is unlikely to have new behaviors in the future, unlike --module nodenext or --moduleResolution nodenext. Also unlike nodenext, specifying --module node20 will ...
🌐
Architecture Weekly
architecture-weekly.com › p › typescript-migrates-to-go-whats-really
TypeScript Migrates to Go: What's Really Behind That 10x Performance Claim?
March 24, 2025 - JavaScript is slow!!! You could get that from the announcement with a 10x performance increase after migrating the TypeScript compiler to Go. The real story? Node.js works well at I/O but struggles with CPU-intensive tasks like compilation. Read more to learn in detail why and what you can learn from it for your systems design!
🌐
npm
npmjs.com › package › typescript
typescript - npm
September 30, 2025 - Latest version: 5.9.3, last published: 2 months ago. Start using typescript in your project by running `npm i typescript`. There are 61824 other projects in the npm registry using typescript.
      » npm install typescript
    
Published   Sep 30, 2025
Version   5.9.3
Author   Microsoft Corp.
🌐
GitHub
github.com › typescript-eslint › typescript-eslint › releases
Releases · typescript-eslint/typescript-eslint
typescript-estree: disallow binding patterns in parameter properties (#11760) ... You can read about our versioning strategy and releases on our website.
Author   typescript-eslint
🌐
Microsoft Developer Blogs
devblogs.microsoft.com › dev blogs › typescript
TypeScript
We're excited to give some updates ... our upcoming roadmap, and how we're prioritizing work on TypeScript 7.0 to drive our port to completion. Editor Support and L... ... Today we are excited to announce the release of TypeScript 5.9!...
🌐
Effective TypeScript
effectivetypescript.com › 2024 › 07 › 02 › ts-55
Effective TypeScript › TypeScript 5.5: A Blockbuster Release
July 2, 2024 - While some languages (Python, JavaScript) are released annually, every three years (C++) or even less, we get four new versions of TypeScript every year. TypeScript 5.5 was released on June 20th, 2024, and it was a real blockbuster. Let's take ...
🌐
Typescriptdocs
typescriptdocs.com › release-notes
TypeScript Release Notes | Typescript Docs
This section contains the release notes for all versions of TypeScript, organized chronologically from newest to oldest.
🌐
Convex
convex.dev › references & resources › version & releases › version management
Version Management | TypeScript Guide by Convex
Understanding which generics<T> and utility types are available in your version helps you write more effective code. Features like decorators and optional chaining were added in specific TypeScript releases, so checking version compatibility is essential.
🌐
Wikipedia
en.wikipedia.org › wiki › TypeScript
TypeScript - Wikipedia
1 week ago - TypeScript was released to the public in October 2012, with version 0.8, after two years of internal development at Microsoft.
🌐
Stack Overflow
stackoverflow.com › questions › 74755652 › where-can-i-find-release-notes-for-minor-versions-of-typescript
Where can I find Release Notes for minor Versions of Typescript? - Stack Overflow
Typescript verison 4.9 is described here: https://devblogs.microsoft.com/typescript/announcing-typescript-4-9-beta/ I wonder where I can find the differences between 4.9.4 and 4.9.3 or in general r...
🌐
Visual Studio Marketplace
marketplace.visualstudio.com › items
JavaScript and TypeScript Nightly - Visual Studio Marketplace
Extension for Visual Studio Code - Enables typescript@next to power VS Code's built-in JavaScript and TypeScript support
🌐
Microsoft Developer Blogs
devblogs.microsoft.com › dev blogs › typescript › announcing typescript 5.5
Announcing TypeScript 5.5 - TypeScript
June 22, 2024 - The next version of TypeScript will be TypeScript 5.6, and we’re looking at a release in early September of 2024 (a few months from now). You can try out early versions of TypeScript 5.6 today by installing our nightly builds from npm with ...
🌐
The Software House
tsh.io › blog › new-typescript-features
New Typescript features – what’s new in TypeScript?
July 11, 2025 - Since TypeScript 5.0, the language has seen a gradual evolution, focusing on aligning with ECMAScript proposals, enhancing developer experience through improved type inference, and boosting performance.