How to use TypeScript compiler in "Watch output files" mode (tsc -w) in Windows?

The compiler version installed with the VS plugin does not have this option, but it has a version for node.js. However, I cannot get this mode to work on Windows. It creates empty files and does not compile anything. Is this a known bug? Can this help? I do not want to use heavy VS, create a VS project, etc.

Update: I filed an error .

+4
source share
1 answer

-w is not supported except node. Even if you run the help command, you will not get -w if you are not using node. Getting a job for non-w632> runtimes would be a good suggestion to do on codeplex http://typescript.codeplex.com/workitem/list/basic

+1
source

Source: https://habr.com/ru/post/1437778/


All Articles