Diferencia entre revisiones de «Instalación TypeScript»
Ir a la navegación
Ir a la búsqueda
([feat] Add information about TypeScript) |
([feat] Add information about TypeScript) |
||
Línea 1: | Línea 1: | ||
= Instalación = | = Instalación = | ||
== | == Versiones == | ||
=== Estable === | |||
npm install -g typescript | npm install -g typescript | ||
== | === Inestable === | ||
npm install -D typescript@rc | npm install -D typescript@rc |
Revisión del 16:25 13 ago 2022
Instalación
Versiones
Estable
npm install -g typescript
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