Instalación TypeScript
Ir a la navegación
Ir a la búsqueda
Instalación
Versión estable
npm install -g typescript
Versión inestable
npm install -D typescript@rc
Verificar versión
tsc --version
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