Skip to content

Instantly share code, notes, and snippets.

@AGoblinKing
Created December 5, 2015 07:57
Show Gist options
  • Save AGoblinKing/43d3fd03bc2f942ab295 to your computer and use it in GitHub Desktop.
Save AGoblinKing/43d3fd03bc2f942ab295 to your computer and use it in GitHub Desktop.
// A task runner that calls the Typescript compiler (tsc) and
// Compiles a HelloWorld.ts program
{
"version": "0.1.0",
// The command is tsc. Assumes that tsc has been installed using npm install -g typescript
"command": "rustc",
// The command is a shell script
"isShellCommand": true,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// args is the HelloWorld program to compile.
"args": ["main.rs"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment