Skip to content

Instantly share code, notes, and snippets.

@Axect
Last active October 25, 2017 04:59
Show Gist options
  • Save Axect/d15a5a2181265430152fc56bc1a1e248 to your computer and use it in GitHub Desktop.
Save Axect/d15a5a2181265430152fc56bc1a1e248 to your computer and use it in GitHub Desktop.
VS Code Task Configuration file for Scala
{
"version": "0.1.0",
"tasks": [
{
"taskName": "build",
"command": "sbt",
"args": ["compile"],
"isShellCommand": true,
"showOutput": "always"
},{
"taskName": "test",
"command": "sbt",
"args": ["test"],
"isShellCommand": true,
"showOutput": "always"
},{
"taskName": "run",
"command": "sbt",
"args": ["run"],
"isShellCommand": true,
"showOutput": "always"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment