Skip to content

Commit

Permalink
Simplify launch config. (#1756)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer authored Dec 19, 2023
1 parent 53712d9 commit fb58a20
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 19 deletions.
23 changes: 6 additions & 17 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,12 @@
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}" ],
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/client/out/**/*.js"],
"autoAttachChildProcesses": true,
"outFiles": [
"${workspaceFolder}/client/out/**/*.js",
"${workspaceFolder}/server/out/**/*.js"
],
"preLaunchTask": "npm: watch"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"address": "localhost",
"port": 6011,
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/server/out/**/*.js"]
}
],
"compounds": [
{
"name": "Client + Server",
"configurations": ["Launch Client", "Attach to Server"]
}
]
}
}
4 changes: 2 additions & 2 deletions playgrounds/8.0/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"eslint.format.enable": true,
"eslint.onIgnoredFiles": "off",
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit"
},
// "[javascript][typescript]": {
// "editor.codeActionsOnSave": {
Expand Down

0 comments on commit fb58a20

Please sign in to comment.