mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
Document markdown debug server build path (#223812)
For debugging, we may want to load the non-bundled path. Only useful when using `yarn link` for local development so just adding as comment
This commit is contained in:
@@ -31,6 +31,8 @@ function startServer(context: vscode.ExtensionContext, parser: IMdParser): Promi
|
||||
|
||||
const serverModule = context.asAbsolutePath(
|
||||
isDebugBuild
|
||||
// For local non bundled version of vscode-markdown-languageserver
|
||||
// ? './node_modules/vscode-markdown-languageserver/out/node/workerMain'
|
||||
? './node_modules/vscode-markdown-languageserver/dist/node/workerMain'
|
||||
: './dist/serverWorkerMain'
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user