make sure node is intalled on your computer.
mac@MacBook-Pro typescriptYoutube % node -v
v24.4.1
check npm version
mac@MacBook-Pro typescriptYoutube % npm -v
11.4.2
install typescript
mac@MacBook-Pro typescriptYoutube % npm install -g typescript
added 1 package in 3s
check tsc version
mac@MacBook-Pro typescriptYoutube % tsc -v
Version 5.9.2
then we create a ts file and excute tsc xx.ts to convert it to js file.
Top comments (0)