Add a compound launch config to lsp-sample

This commit is contained in:
Jens Fischer
2018-06-28 13:58:54 +02:00
parent fda240cada
commit 52ac2fc3d0
2 changed files with 10 additions and 4 deletions

View File

@ -37,5 +37,11 @@
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/client/out/test/**/*.js"]
}
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
]
}

View File

@ -35,10 +35,10 @@ connection.onInitialize((params: InitializeParams) => {
return {
capabilities: {
textDocumentSync: documents.syncKind,
// Tell the client that the server supports code completion
completionProvider: {
resolveProvider: true
}
// Tell the client that the server supports code completion
completionProvider: {
resolveProvider: true
}
}
}
});