Skip to content

Commit

Permalink
Merge pull request #24 from Shifu462/disable-extensions
Browse files Browse the repository at this point in the history
Add `--disable-extensions` arg for VS Code in debug.
  • Loading branch information
kaermorchen authored Sep 23, 2023
2 parents acf6511 + 2d39319 commit 57d37a9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"request": "launch",
"preLaunchTask": "${defaultBuildTask}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/packages/vscode"
"--extensionDevelopmentPath=${workspaceFolder}/packages/vscode",
"--disable-extensions",
],
"outFiles": [
"${workspaceFolder}/packages/vscode/out/*.js"
Expand All @@ -19,8 +20,8 @@
"request": "attach",
"port": 6009,
"restart": true,
"sourceMaps":true,
"smartStep":true,
"sourceMaps": true,
"smartStep": true,
"outFiles": [
"${workspaceRoot}/packages/language-server/out/**/*.js"
]
Expand Down

0 comments on commit 57d37a9

Please sign in to comment.