18e7cc5af9
* wip: scaffold astro extension * wip: scaffold astro extension * WIP: vscode extension * fix: autoCloseBefore * chore: update package.json * fix: use tsx instead of plain ts * chore: remove dist files * chore: remove comments * chore: cleanup package build process, switch build to esbuild * refactor: use shared esbuild config Co-authored-by: Nate Moore <nate@skypack.dev>
34 lines
503 B
JSON
34 lines
503 B
JSON
|
|
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "compile:extension",
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "watch:extension",
|
|
"isBackground": true,
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
}
|
|
]
|
|
}
|