Skip to content

Instantly share code, notes, and snippets.

@manjunatha-d
Created February 8, 2020 14:25
Show Gist options
  • Save manjunatha-d/ffa143381200894cd16e39587fba036e to your computer and use it in GitHub Desktop.
Save manjunatha-d/ffa143381200894cd16e39587fba036e to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"label": "tsc watch",
"type": "shell",
"command": "./node_modules/.bin/tsc",
"isBackground": true,
"args": ["--watch", "--noEmit", "--project", "."],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "never",
"echo": false,
"focus": false,
"panel": "dedicated"
},
"problemMatcher": "$tsc-watch",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment