Instalación TypeScript
Instalación
npm install -g typescript
Verificar versión
tsc --version
Sale por pantalla:
Version 4.7.4
Ejemplo
Compilación
Por archivo específico
tsc hello.ts node hello.js
Salida:
hello world
Hot reload
tsc hello.ts --watch
Por todos los archivos
tsc *.ts