Skip to content

Instantly share code, notes, and snippets.

@GrandSchtroumpf
Created May 7, 2020 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GrandSchtroumpf/c9c37e84288ee56971baaaa229912dec to your computer and use it in GitHub Desktop.
Save GrandSchtroumpf/c9c37e84288ee56971baaaa229912dec to your computer and use it in GitHub Desktop.
Markdium-VSCode extension inside a nx workspace
{
"version": "0.2.0",
"configurations": [{
"name": "Run Extension In Dev Mode",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/dist/apps/vs-code"
],
"trace": "false",
"internalConsoleOptions": "openOnFirstSessionStart",
"outFiles": [
"${workspaceFolder}/dist/apps/vs-code"
],
"preLaunchTask": "${defaultBuildTask}"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment