Open package.json file and check devDependencies node. It has typescript version used in project like below.

"typescript": "^2.4.0",

You can also use command prompt as Sajeetharan suggested in below answer.

Answer from Karan Patel on Stack Overflow
🌐
Dhgate
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 Environments - Smart.DHgate – Trusted Buying Guides for Global Shoppers
November 4, 2025 - Ever been deep in coding, only to find your project throwing odd errors or refusing to compile? Many times, it's because the TypeScript version you're working
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 ...
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
Use the `npm ls typescript` command to check which version of `typescript` is installed locally in your project.
🌐
Visual Studio Code
code.visualstudio.com › docs › typescript › typescript-compiling
Compiling TypeScript
November 3, 2021 - You can test your install by checking the version or help. ... Another option is to install the TypeScript compiler locally in your project (npm install --save-dev typescript) and has the benefit of avoiding possible interactions with other TypeScript projects you may have.
🌐
Delft Stack
delftstack.com › home › howto › typescript › check typescript version
How to Check Version in TypeScript | Delft Stack
March 11, 2025 - This command retrieves the latest commit of the package.json file and filters the output to show only the line containing TypeScript. The caret symbol (^) indicates that the project is using version 4.5.4 or any compatible version above it, but below 5.0.0. This method is straightforward and allows you to quickly check the version of TypeScript your project is using, especially when collaborating with teams.
🌐
EDUCBA
educba.com › home › software development › software development tutorials › typescript tutorial › typescript version check
TypeScript Version Check | Example | TypeScript Versions
April 18, 2023 - There is no need to pass any parameters, this will return only the TypeScript version which is currently installed on the system. Given below is the example of TypeScript Version Check:
Address   Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai
Find elsewhere
🌐
Graphite
graphite.com › guides › typescript-versioning
TypeScript versioning
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.
🌐
C# Corner
c-sharpcorner.com › blogs › typescript-versions-in-angular
TypeScript Versions In Angular
March 13, 2023 - The TypeScript version can be found in the package.json file of your Angular project. Open the package.json file and look for the "typescript" section. You will see the version of TypeScript that your Angular project is using.
🌐
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…
🌐
Python Guides
pythonguides.com › check-typescript-version
How To Check TypeScript Version?
October 22, 2024 - To check your TypeScript version, open your terminal and run tsc -v, which will display the currently installed version. Alternatively, you can check the package.json file under devDependencies for the TypeScript version, or use commands like ...
🌐
Convex
convex.dev › references & resources › version & releases › version management
Version Management | TypeScript Guide by Convex
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.
🌐
npm
npmjs.com › package › typescript
typescript - npm
Latest version: 5.9.3, last published: 3 months ago. Start using typescript in your project by running `npm i typescript`. There are 61861 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
TypeScript can be installed through three installation routes depending on how you intend to use it: an npm module, a NuGet package or a Visual Studio Extension. If you are using Node.js, you want the npm version. If you are using MSBuild in your project, you want the NuGet package or Visual Studio extension.
🌐
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 ...
🌐
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 5, 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.

🌐
Allenconway
allenconway.net › 2015 › 07 › which-version-of-typescript-is.html
Allen Conway: Which Version of TypeScript is Installed and Which Version is Visual Studio Using?
Before manually changing the PATH variable to point to the newer TypeScript SDK version, lets look at what VS.NET reads to know which compiler to target. Unfortunately it is not available as a nice dropdown in the TypeScript properties for the project (hence adding to my rating of '2' for the version fun with 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.
🌐
Stack Overflow
stackoverflow.com › questions › 55556147 › how-to-change-and-check-which-typescript-version-is-used-as-target-version › 55557268
How to change and check which Typescript version is used as target version - Stack Overflow
Having typescript code in a file called main.ts to compile it using ES5, for example, we use: tsc -t ES5 main.ts How to set ES5 (or other version as default target version globally)? I know we can...
🌐
Webdevtutor
webdevtutor.net › blog › typescript-check-version-npm
How to Check TypeScript Version Using NPM
This command will display the globally installed TypeScript version on your system. To check the local TypeScript version within a specific project, navigate to the project directory and run the following command: