Browse Source

Skips "not my code"

main
Eric Amodio 6 years ago
parent
commit
4cbae50079
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      .vscode/launch.json

+ 5
- 5
.vscode/launch.json View File

@ -8,10 +8,10 @@
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"stopOnEntry": false,
"outFiles": ["${workspaceRoot}/out/**/*.js"],
"skipFiles": ["<node_internals>/**/*.js", "**/node_modules/**/*.js", "**/extensions/**/*.js"],
"smartStep": true,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"]
"sourceMaps": true
},
{
"name": "Watch & Launch GitLens",
@ -19,10 +19,10 @@
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": ["${workspaceRoot}/out/**/*.js"],
"skipFiles": ["<node_internals>/**/*.js", "**/node_modules/**/*.js", "**/extensions/**/*.js"],
"smartStep": true,
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"],
"preLaunchTask": "npm: watch"
}
]

Loading…
Cancel
Save