Skip to content

Instantly share code, notes, and snippets.

@juanwilde
Created August 29, 2025 16:22
Show Gist options
  • Save juanwilde/6908bcfea0059e179909473afcbf46b7 to your computer and use it in GitHub Desktop.
Save juanwilde/6908bcfea0059e179909473afcbf46b7 to your computer and use it in GitHub Desktop.
{
"version": "2.0.0",
"tasks": [
{
"label": "TypeScript: Watch",
"type": "shell",
"command": "npx tsc --noEmit --watch",
"options": {
"cwd": "${workspaceFolder}/api"
},
"isBackground": true,
"problemMatcher": {
"base": "$tsc-watch",
"fileLocation": [
"relative",
"${workspaceFolder}/api"
]
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "never",
"panel": "shared",
"clear": true
},
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment