EN
TypeScript - check version
0
points
In this article, we would like to show you how to check the TypeScript version from the command line.
Quick solution:
tsc -v
or:
npx tsc -v
Practical examples
Example 1
In this example, we use tsc -v
command to check the TypeScript version from the Command Prompt.
tsc -v
Result:

Example 2
In this example, we use npx tsc -v
command to check the TypeScript version from the VS Code Terminal.
Result:
