Merge pull request #3156 from Microsoft/codeSettings

Adds tasks.json to easily use VSCode with TypeScript sources
This commit is contained in:
Ron Buckton 2015-05-19 10:58:04 -07:00
commit a1406bf836
2 changed files with 25 additions and 1 deletions

3
.gitignore vendored
View file

@ -47,4 +47,5 @@ scripts/*.js.map
coverage/
internal/
**/.DS_Store
.settings/
.settings/*
!.settings/tasks.json

23
.settings/tasks.json Normal file
View file

@ -0,0 +1,23 @@
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process
{
"version": "0.1.0",
"command": "jake",
"isShellCommand": true,
"showOutput": "silent",
"tasks": [
{
"taskName": "local",
"isBuildCommand": true,
"showOutput": "silent",
"problemMatcher": [
"$tsc"
]
}
]
}