123456789101112131415161718192021222324252627282930313233 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "type": "npm",
- "script": "compile",
- "group": "build",
- "presentation": {
- "panel": "dedicated",
- "reveal": "never"
- },
- "problemMatcher": [
- "$tsc"
- ]
- },
- {
- "type": "npm",
- "script": "watch",
- "isBackground": true,
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "presentation": {
- "panel": "dedicated",
- "reveal": "never"
- },
- "problemMatcher": [
- "$tsc-watch"
- ]
- }
- ]
- }
|