Created
October 26, 2022 15:29
-
-
Save danieldietrich/4dac3716dfeed1c2727a0861d06b4864 to your computer and use it in GitHub Desktop.
Langium Launch configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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