Vim/.vscode/tasks.json

23 lines
596 B
JSON
Raw Normal View History

2015-11-12 22:51:40 +03:00
// 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
{
2017-11-09 21:02:45 +03:00
"version": "2.0.0",
2016-09-12 08:39:02 +03:00
"tasks": [
{
2017-11-09 21:02:45 +03:00
"type": "gulp",
"task": "default",
"problemMatcher": "$tsc-watch"
},
{
"type": "gulp",
"task": "build",
"problemMatcher": []
2016-09-12 08:39:02 +03:00
}
]
}