Files
KGStudio/.vscode/tasks.json
T
2025-08-11 18:37:21 -07:00

28 lines
758 B
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"
}
}
}
]
}