31 lines
589 B
JSON
31 lines
589 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "bun: compile",
|
|
"command": "bun",
|
|
"args": ["run", "compile"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": "$tsc",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "bun: watch",
|
|
"command": "bun",
|
|
"args": ["run", "watch"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": "$tsc-watch",
|
|
"isBackground": true
|
|
}
|
|
]
|
|
}
|