Files
fmd-x-vs-code/.vscode/tasks.json
T
2026-06-08 17:56:41 +08:00

28 lines
479 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$tsc"
},
{
"type": "npm",
"script": "watch",
"group": "build",
"presentation": {
"reveal": "silent"
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
]
}