mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
// 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"
|
|
}
|
|
}
|
|
]
|
|
}
|