Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 251 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 251 Bytes

Typescript terminal commands

to watch for changes in typescript file

tsc --watch <filename> (example: tsc --watch index)

to run typescript file

tsc <filename> (example: tsc index)

to create typescript config file

tsc --init