Skip to content

Instantly share code, notes, and snippets.

@lifeart
Created October 7, 2021 16:25
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 lifeart/21fc366f479bbfd67a3334de2a5f8f97 to your computer and use it in GitHub Desktop.
Save lifeart/21fc366f479bbfd67a3334de2a5f8f97 to your computer and use it in GitHub Desktop.
{
"version":"0.1.0",
"configurations":[
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
"--extensionTestsPath=${workspaceRoot}/out/test"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/out/test/**/*.js"
],
"preLaunchTask": "npm"
},
{
"name":"Launch UELS Extension",
"type":"extensionHost",
"request":"launch",
"runtimeExecutable":"${execPath}",
"args":[
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry":false,
"sourceMaps":true,
"outFiles":[
"${workspaceRoot}/out/src/**/*.js"
]
},
{
"name":"Attach to UELS Server",
"type":"node",
"request":"attach",
"port":6004,
"sourceMaps":true,
"protocol":"inspector",
"outFiles":[
"${workspaceRoot}/node_modules/@lifeart/ember-language-server/lib/**/*.js"
],
"restart":true,
"smartStep":true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment