Van ez a kivétel, amikor fut származó TSC cmd parancssort (Windows 7 x64):
set tsc=c:\Program Files (x86)\nodejs\node_modules\typescript\bin
%tsc%\tsc.js foo.ts
Van ez a kivétel, amikor fut származó TSC cmd parancssort (Windows 7 x64):
set tsc=c:\Program Files (x86)\nodejs\node_modules\typescript\bin
%tsc%\tsc.js foo.ts
Az oldatot / megoldás az, hogy fut TSC használatával csomópont:
set node="c:\Program Files (x86)\nodejs"
set tsc=%node%\node_modules\typescript\bin
%node%\node %tsc%\tsc.js foo.ts
(Lehet, hogy nyilvánvaló, de elvitt néha kitalálni.)