emoticon/.vscode/tasks.json
2025-03-25 17:30:21 +09:00

28 lines
647 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "npm: start:dev",
"type": "npm",
"script": "start:dev",
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"pattern": [
{
"regexp": "No issues found",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "Files successfully emitted, wating for typecheck results...",
"endsPattern": "No issues found"
}
},
"detail": "env-cmd -f .env.dev craco start"
}
]
}