Files
KGStudio/.vscode/tasks.json
T
2026-05-14 18:03:58 -07:00

51 lines
1.4 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"label": "npm: dev",
"detail": "vite",
"isBackground": true,
"options": {
"shell": {
"executable": "/bin/zsh",
"args": ["-c", "source ~/.nvm/nvm.sh && nvm use 20 && npm run dev"]
}
},
"problemMatcher": {
"pattern": {
"regexp": "^.*$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": "ready in .*ms"
}
}
},
{
"type": "npm",
"script": "dev",
"label": "npm: dev (Windows)",
"detail": "vite",
"isBackground": true,
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
},
"problemMatcher": {
"pattern": {
"regexp": "^.*$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": "ready in .*ms"
}
}
}
]
}