brainatlas.brain.riken.jp/.vscode/tasks.json

41 lines
817 B
JSON
Raw Normal View History

2023-07-28 22:05:26 +09:00
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: dev",
"detail": "vite dev",
"type": "npm",
"script": "dev",
"problemMatcher": "$tsc",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "npm: build",
"detail": "vite build",
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": "$tsc",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
}