Created
August 29, 2025 16:22
-
-
Save juanwilde/6908bcfea0059e179909473afcbf46b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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