TypeScript 1.0 - where is the tsc.exe?
My file watcher currently points to TS 0.9 like this:C:\Program Files (x86)\Microsoft SDKs\TypeScript\0.9\tsc.exe
I have installed TS 1.0 simply by executing npm install -g typescript in the node.js console (https://typescript.codeplex.com/releases/view/120282). This resulted in a new folder at C:\Users\Me\AppData\Roaming\npm\node_modules\typescript\bin but there is no tsc.exe. I am confused, how do I get the tsc.exe that should be targeted by the file watcher?
Thanks
Please sign in to leave a comment.
There is no tsc.exe - when installing typescript via npm no executables are created - but the tsc.cmd should be there, in C:\Users\Me\AppData\Roaming\npm\tsc.cmd. You need to specify it as a program in File Watcher settings
Works like a charm, thanks