| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "watch",
- "dependsOn": ["npm: dev", "npm: watch:tsc", "npm: watch:esbuild"],
- "presentation": {
- "reveal": "never"
- },
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "npm: dev",
- "type": "npm",
- "script": "dev",
- "group": "build",
- "problemMatcher": {
- "owner": "vite",
- "pattern": {
- "regexp": "^$"
- },
- "background": {
- "activeOnStart": true,
- "beginsPattern": ".*VITE.*",
- "endsPattern": ".*Local:.*"
- }
- },
- "isBackground": true,
- "presentation": {
- "group": "webview-ui",
- "reveal": "always"
- }
- },
- {
- "label": "npm: watch:esbuild",
- "type": "npm",
- "script": "watch:esbuild",
- "group": "build",
- "problemMatcher": "$esbuild-watch",
- "isBackground": true,
- "presentation": {
- "group": "watch",
- "reveal": "always"
- }
- },
- {
- "label": "npm: watch:tsc",
- "type": "npm",
- "script": "watch:tsc",
- "group": "build",
- "problemMatcher": "$tsc-watch",
- "isBackground": true,
- "presentation": {
- "group": "watch",
- "reveal": "always"
- }
- }
- ]
- }
|