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>
22 lines
507 B
JSON
22 lines
507 B
JSON
// A launch configuration that compiles the extension and then opens it inside a new window
|
|
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"name": "Launch Extension",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceRoot}/vscode"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceRoot}/vscode/packages/client/out/**/*.js"
|
|
],
|
|
"preLaunchTask": {
|
|
"type": "npm",
|
|
"script": "watch:extension"
|
|
}
|
|
},
|
|
]
|
|
}
|