Created
October 26, 2022 15:29
-
-
Save danieldietrich/4dac3716dfeed1c2727a0861d06b4864 to your computer and use it in GitHub Desktop.
Revisions
-
danieldietrich created this gist
Oct 26, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,36 @@ { "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" ] }, ] }