87af0aead8
* feat(lsp): add HTML features to LSP * chore: add language server license * feat(lsp): add folding ranges, scaffold TS features * feat(lsp): TypeScript Language Service setup * refactor(lsp): cleanup typescript completion providr * chore: format * chore: cleanup eslint * fix: license * chore: remove comment * chore: add marketplace info * chore: publish
36 lines
783 B
JSON
36 lines
783 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 Client",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceRoot}/vscode"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceRoot}/vscode/dist/**/*.js"
|
|
],
|
|
"preLaunchTask": {
|
|
"type": "npm",
|
|
"script": "build:extension"
|
|
}
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach to Server",
|
|
"port": 6040,
|
|
"restart": true,
|
|
"outFiles": ["${workspaceRoot}/vscode/dist/**/*.js"]
|
|
},
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Launch Extension",
|
|
"configurations": ["Launch Client", "Attach to Server"]
|
|
}
|
|
]
|
|
}
|