/// <reference path="../types/hm_jsmode.d.ts" />
message("Hello World");
let ret: string = input("何か入力してください", "ここに");
debuginfo(2);
console.log(ret);
CTRL+SHIFT+B を 押すことで、「src フォルダ」内の「test.ts」ファイルが変換され、
「build フォルダ」の「test.js」が更新される。
tsc: The term 'tsc' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
みたいなエラーが出た場合、Power Shellや(コンソールで
npm install -g typescript
などとしてTypeScriptをトランスパイル出来るようにしてください。
といったような開発サイクルとなります。