discord-vscode/.vscode/launch.json

16 lines
336 B
JSON
Raw Permalink Normal View History

2017-11-23 13:06:21 +00:00
{
2017-11-23 23:53:16 +00:00
"version": "0.5.0",
2017-11-23 13:06:21 +00:00
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
2017-11-23 13:06:21 +00:00
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/dist/**/*.js"]
2017-11-23 13:06:21 +00:00
}
]
}