Skip to content

Instantly share code, notes, and snippets.

@danieldietrich
Created October 26, 2022 15: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 danieldietrich/4dac3716dfeed1c2727a0861d06b4864 to your computer and use it in GitHub Desktop.
Save danieldietrich/4dac3716dfeed1c2727a0861d06b4864 to your computer and use it in GitHub Desktop.
Langium Launch configuration
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
},
{
"name": "Attach to Language Server",
"type": "node",
"port": 6009,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
},
{
"name": "Generate Logo",
"type": "node",
"program": "${workspaceFolder}/bin/cli",
"request": "launch",
"args": [
"generate",
"./examples/langium.logo"
]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment