EN
How to enable auto-compile for typescript (*.ts) file?
1
answers
7
points
How to enable autocompilation for specific file with tsc command?
1 answer
12
points
Use:
tsc *.ts --watch
or
tsc my/file/path.ts --watch
0 comments
Add comment