cmd komut satırı istemi (Windows 7 x64) den tsc çalıştırırken bu özel durum var:
set tsc=c:\Program Files (x86)\nodejs\node_modules\typescript\bin
%tsc%\tsc.js foo.ts
cmd komut satırı istemi (Windows 7 x64) den tsc çalıştırırken bu özel durum var:
set tsc=c:\Program Files (x86)\nodejs\node_modules\typescript\bin
%tsc%\tsc.js foo.ts
çözelti / çözüm düğümü kullanarak TSC çalıştırmaktır:
set node="c:\Program Files (x86)\nodejs"
set tsc=%node%\node_modules\typescript\bin
%node%\node %tsc%\tsc.js foo.ts
(Belli olabilir ama anlamaya bazen götürdü.)