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
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).

🌐
Bobby Hadz
bobbyhadz.com › blog › npm-check-which-version-of-typescript-is-installed
How to Check which version of TypeScript is installed | bobbyhadz
If you need to check the globally installed version of typescript, use the npm ls -g typescript command. Make sure to open your terminal in your project's root directory (where your package.json file is) before issuing the command.
People also ask

How can I check the TypeScript version used in my Angular project?
Angular CLI doesn’t directly show TypeScript version, but you can check the version in your package.json or run npm list typescript inside your Angular project directory.
🌐
smart.dhgate.com
smart.dhgate.com › home › a complete guide to checking your typescript version across different environments
A Complete Guide to Checking Your TypeScript Version Across Different ...
Will updating the TypeScript version break my existing project?
It can, if jump is big. Always test your project after updating, read release notes, and increment versions gradually whenever possible.
🌐
smart.dhgate.com
smart.dhgate.com › home › a complete guide to checking your typescript version across different environments
A Complete Guide to Checking Your TypeScript Version Across Different ...
What if I have multiple TypeScript versions installed globally and locally?
Run npx tsc -v in your project folder to use the local version. You can also configure your editor to pick the workspace TypeScript version.
🌐
smart.dhgate.com
smart.dhgate.com › home › a complete guide to checking your typescript version across different environments
A Complete Guide to Checking Your TypeScript Version Across Different ...
🌐
Visual Studio Code
code.visualstudio.com › docs › typescript › typescript-compiling
Compiling TypeScript
November 3, 2021 - You can pin the TypeScript version to the Status Bar by using the pin icon. Later in the article, we'll discuss how you can change the version of TypeScript language service that VS Code uses. Typically the first step in any new TypeScript project is to add a tsconfig.json file.
🌐
EDUCBA
educba.com › home › software development › software development tutorials › typescript tutorial › typescript version check
TypeScript Version Check | Example | TypeScript Versions
April 18, 2023 - This is a guide to TypeScript Version Check. Here we discuss the introduction, example and TypeScript versions respectively.
Address   Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai
🌐
Delft Stack
delftstack.com › home › howto › typescript › check typescript version
How to Check Version in TypeScript | Delft Stack
March 11, 2025 - If you are working with a project that is version-controlled using Git, you can easily check the TypeScript version by examining the package.json file. This file typically contains all the dependencies for your project, including TypeScript. Here’s how you can do it: First, navigate to your project directory in the terminal. Once you are in the correct location, you can use the following command to view the TypeScript version specified in your package.json file: ... This command retrieves the latest commit of the package.json file and filters the output to show only the line containing TypeScript.
🌐
Graphite
graphite.com › guides › typescript-versioning
TypeScript versioning
This command invokes the TypeScript compiler (tsc) with the --version flag, which outputs the version of TypeScript currently installed. If you’re working within a specific project, the TypeScript version used is usually specified in the project's package.json file under the devDependencies or dependencies section. You can check this file to see the exact version your project relies on.
Find elsewhere
🌐
Convex
convex.dev › references & resources › version & releases › version management
How to Manage Different TypeScript Versions
This guide will help you understand how to check, update, and troubleshoot TypeScript versions effectively. To find out which TypeScript version your project is using, type tsc --version in your terminal.
🌐
LambdaTest Community
community.lambdatest.com › general discussions
How to check TypeScript version in an Angular 4 project? - LambdaTest Community
August 5, 2024 - How can I check the TypeScript version used in my Angular 4 project? Running ng -v shows various details but not the TypeScript version. What steps can I follow to determine the TypeScript version in my Angular 4 project…
🌐
C# Corner
c-sharpcorner.com › blogs › typescript-versions-in-angular
TypeScript Versions In Angular
March 13, 2023 - Open your terminal and run the ... used in your project. Another way to check the TypeScript version is to use the TypeScript compiler....
🌐
CoderJony
coderjony.com › blogs › how-to-check-typescript-version-installed-in-visual-studio
CoderJony - How to check TypeScript version installed in Visual Studio?
Third way of checking TypeScript version is to open Visual Studio and go to Tools > Options menu. A popup will open then - like below screen, there you can change below highlighted property to Detailed.
🌐
Reddit
reddit.com › r/node › ts-node - how do i know what version of tsc it is actually using?
r/node on Reddit: ts-node - how do I know what version of tsc it is actually using?
April 7, 2019 -

Hi all... so I am currently in the midst of upgrading an existing project to a newer version of typescript. The issue I am having is that in package.json we have a command to compile everything with tsc:

"test:build": "tsc --outDir ./dist"

and a command to run the project locally through nodemon and ts-node:

"build:live": "nodemon --exec node --inspect -r ts-node/register ./index.ts | bunyan -l debug",

The issue is that the first command that builds directly with tsc gives compilation errors where our code is not correct for the new version of typescript that I've specified in package.json. That's to be expected and its fine. But the latter command that runs with nodemon and ts-node continues to run quite happily with no errors, which leads me to believe that, behind the scenes, its using a different and older version of tsc.

So, how can I determine which version of tsc is actually being used by ts-node? And more to the point, how can I get it to use the new version that I am trying to target?

Thanks in advance for any help, and sorry if this is a bad question but I am relatively new to the world of node and not having any luck Googling for this.

🌐
Codingdeeply
codingdeeply.com › home › how to check typescript version?
How To Check Typescript Version? - Codingdeeply
February 23, 2024 - So, knowing all this about TypeScript you now need to make sure you have the right version. Doing a TypeScript Version Check will check the version of TypeScript that you have installed on your computer system.
🌐
npm
npmjs.com › package › typescript
typescript - npm
TypeScript is a language for application scale JavaScript development. Latest version: 5.9.3, last published: 2 months ago. Start using typescript in your project by running `npm i typescript`. There are 61834 other projects in the npm registry using typescript.
      » npm install typescript
    
Published   Sep 30, 2025
Version   5.9.3
Author   Microsoft Corp.
🌐
TypeScript
typescriptlang.org › download
TypeScript: How to set up TypeScript
The latest version is available in the Visual Studio Marketplace. There are other tools which convert TypeScript files to JavaScript files. You might use these tools for speed or consistency with your existing build tooling. Each of these projects handle the file conversion, but do not handle the type-checking ...
🌐
Python Guides
pythonguides.com › check-typescript-version
How To Check TypeScript Version?
October 22, 2024 - In Visual Studio Code, open the command palette and type TypeScript: Select TypeScript Version to see and switch between installed versions. ... This might look silly, but you, as a TypeScript developer, should know the version of the TypeScript ...
🌐
Edureka Community
edureka.co › home › community › categories › typesript › where to find typescript version in visual studio
Where to find TypeScript version in Visual Studio | Edureka Community
June 3, 2022 - 180618/where-to-find-typescript-version-in-visual-studio ... What is argument of type 'never[ ]' is not assignable to parameter of type 'string' in TypeScript Apr 18, 2023 ... Already have an account? Sign in. × ... Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP · "PMP®","PMI®", "PMI-ACP®" and "PMBOK®" are registered marks of the Project Management Institute, Inc.
🌐
Treehouse Blog
blog.teamtreehouse.com › getting-started-typescript
Getting Started With TypeScript [Examples] | Treehouse Blog
July 3, 2024 - ... The -g means it’s installed on your system globally so that the TypeScript compiler can be used in any of your projects. Test that the TypeScript is installed correctly by typing tsc -v into your terminal or command prompt. You should ...