Sfoglia il codice sorgente

Adds cleanroom launch config

main
Eric Amodio 4 anni fa
parent
commit
2820bddc44
2 ha cambiato i file con 30 aggiunte e 1 eliminazioni
  1. +1
    -0
      .gitignore
  2. +29
    -1
      .vscode/launch.json

+ 1
- 0
.gitignore Vedi File

@ -1,4 +1,5 @@
.eslintcache
.vscode-clean
dist
node_modules
images/settings

+ 29
- 1
.vscode/launch.json Vedi File

@ -73,7 +73,7 @@
"trace": true
},
{
"name": "Watch & Launch GitLens (Sandboxed)",
"name": "Watch & Launch GitLens (sandboxed)",
"type": "pwa-extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
@ -95,6 +95,34 @@
"smartStep": true,
"sourceMaps": true,
"trace": true
},
{
"name": "Watch & Launch GitLens (cleanroom)",
"type": "pwa-extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--user-data-dir=${workspaceFolder}/.vscode-clean",
"--extensions-dir=${workspaceFolder}/.vscode-clean/extensions",
"--extensionDevelopmentPath=${workspaceFolder}"
],
"cwd": "${workspaceFolder}",
"debugWebviews": true,
"rendererDebugOptions": {
"sourceMaps": true,
"urlFilter": "*eamodio.gitlens*",
"webRoot": "${workspaceFolder}/src/webviews/apps"
},
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}",
"presentation": {
"group": "1_watch",
"order": 1
},
"skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/resources/app/out/vs/**"],
"smartStep": true,
"sourceMaps": true,
"trace": true
}
]
}

Caricamento…
Annulla
Salva