I am trying to setup a Sublime Text 2 build system for TypeScript. I have followed the directions I found here. Actually calling out to the compiler works, however it does not pick up the error messages correctly.
Here is my sample TypeScript program:
function greeter(person: string) {
return "Hello, " + person;
}
var user = "Jane User";
document.body.innerHTML = greeter(us-er);
When I compile from the command line, I see the following output:
C:/data/helloworld.ts(5,34): The name 'us' does not exist in the current scope C:/data/helloworld.ts(5,37): The name 'er' does not exist in the current scope C:/data/helloworld.ts(5,26): Supplied parameters do not match any signature of call target
When I build from within Sublime Text 2 I see the following output:
C:/Data/helloworld.ts(5,34): [Finished in 0.6s]
I have tried different variations of the file_regex, as mentioned in the original question, all with the same result. My current version of the file looks like:
{
"selector": "source.ts",
"cmd": ["tsc.cmd", "--target","ES5", "$file"],
"file_regex": "^(.+?)\\(([0-9]+,[0-9]+)\\)\\: (.+)$"
}
When I test the regex using the Python Regex Tool this version matches the 3 parts correctly. However, Sublime Text refuses to show me the actual error message.
Can anybody point out what I am doing wrong?
It is very frustrating, especially as the one site even shows an example of Sublime Text correctly displaying the error message.
This is with Sublime Text 2.01 64-bit on Windows 7 64-bit.