From 47b12a403c36a9783b9f77d9d680901ec95b9e25 Mon Sep 17 00:00:00 2001 From: Sean Clark Hess Date: Sat, 25 May 2013 01:18:08 -0600 Subject: [PATCH] Added build system --- typescript.sublime-build | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 typescript.sublime-build diff --git a/typescript.sublime-build b/typescript.sublime-build new file mode 100644 index 0000000..1161692 --- /dev/null +++ b/typescript.sublime-build @@ -0,0 +1,13 @@ +{ + "cmd": ["tsc", "-sourcemap", "$file"], + "file_regex": "(.*\\.ts?)\\s\\(([0-9]+)\\,([0-9]+)\\)\\:\\s(...*?)$", + "selector": "source.ts", + + "windows": { + "cmd": ["tsc", "-sourcemap", "$file"] + }, + "osx": { + "path": "/usr/local/bin:/opt/local/bin" + } + +} \ No newline at end of file