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