EN
tsc - re-compile TypeScript file on change
9
points
In this short article, we would like to show how to run TypeScript compiler in watch mode to recompile *.ts file on any change.
Quick solution (run the following command):
tsc -w my_script.ts
or:
tsc --watch my_script.ts