Created
December 10, 2012 02:32
-
-
Save vonWolfehaus/4248044 to your computer and use it in GitHub Desktop.
TypeScript build system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"cmd": ["tsc", "--target", "ES5", "$file"], | |
"file_regex": "(.*\\.ts?)\\s\\(([0-9]+)\\,([0-9]+)\\)\\:\\s(...*?)$", | |
"selector": "source.ts", | |
"shell": true, | |
"windows": { | |
"cmd": ["tsc.exe", "$file"] | |
}, | |
"osx": { | |
"path": "/usr/local/bin:/opt/local/bin" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment