vscode/extensions/python/.vscode/launch.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
362 B
JSON
Raw Permalink Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
2017-09-19 09:21:41 +00:00
"--extensionDevelopmentPath=${workspaceFolder}"
],
"stopOnEntry": false,
"sourceMaps": true,
2017-09-19 09:21:41 +00:00
"outDir": "${workspaceFolder}/out",
"preLaunchTask": "npm"
2017-09-19 09:21:41 +00:00
}
]
}