realm-js/.vscode/tasks.json
blagoev 468e69d76e Improve VS Code debug
Allow debugging of session-tests and improve VS Code debug tasks.
New VS Code task to download and start server for debugging
New VS Code tasks to build only changed files and full rebuild
2017-05-17 16:05:15 +03:00

34 lines
1.0 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"tasks": [
{
"taskName": "Rebuild Node Tests",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"args": ["run", "rebuild-changes"],
"isBuildCommand": false
},
{
"taskName": "Build Node Tests",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"args": ["run", "build-changes"],
"isBuildCommand": true
},
{
"taskName": "Download and Start Server",
"command": "${workspaceRoot}/scripts/download_and_start_server.sh",
"isShellCommand": true,
"showOutput": "always",
"echoCommand": true,
"isBackground": true,
"suppressTaskName": true
}
]
}