Merlin32ForVSCode/.vscode/launch.json

18 lines
370 B
JSON
Raw Permalink Normal View History

2017-08-29 02:15:42 +00:00
{
2017-09-05 00:50:23 +00:00
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"],
"preLaunchTask": "npm"
}
]
2017-08-29 02:15:42 +00:00
}