discord-vscode/.vscode/launch.json

16 lines
339 B
JSON
Raw 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}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/dist/**/*.js" ]
2017-11-23 13:06:21 +00:00
}
]
}