Use this on OS-X:
{
"cmd": ["tsc","$file"],
"file_regex": "(.*\.ts?)\s\(([0-9]+)\,([0-9]+)\)\:\s(...*?)$",
"selector": "source.ts",
"osx": {
"path": "/usr/local/bin:/opt/local/bin"
}
}
EDIT:
Here is the Sublime Build System created for Windows. Tested and working as expected. However you need to include tsc.cmd path in the windows environment, otherwise you should define the root to the Typescript command in the cmd
section below:
{
"cmd": ["tsc","$file"],
"file_regex": "(.*\.ts?)\s\(([0-9]+)\,([0-9]+)\)\:\s(...*?)$",
"selector": "source.ts",
"windows": {
"cmd": ["tsc.cmd", "$file"]
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…