mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 00:10:13 +01:00
Update VSCode debugging configuration
This commit is contained in:
parent
718c1a393d
commit
ec5d0d00f5
1 changed files with 48 additions and 36 deletions
38
.vscode/launch.json
vendored
38
.vscode/launch.json
vendored
|
|
@ -1,23 +1,33 @@
|
||||||
{
|
{
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
|
||||||
"type": "chrome",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "Meteor: Chrome",
|
|
||||||
"url": "http://localhost:3000",
|
|
||||||
"webRoot": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Meteor: Node",
|
"name": "Meteor: Node",
|
||||||
"runtimeExecutable": "/home/wekan/.meteor/meteor",
|
"runtimeExecutable": "meteor",
|
||||||
"runtimeArgs": ["run", "--inspect-brk=9229"],
|
"runtimeArgs": [
|
||||||
|
"--port=4000",
|
||||||
|
"--exclude-archs=web.browser.legacy,web.cordova",
|
||||||
|
"--raw-logs"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"WRITABLE_PATH": "/tmp/uploads",
|
||||||
|
},
|
||||||
"outputCapture": "std",
|
"outputCapture": "std",
|
||||||
"port": 9229,
|
"restart": true,
|
||||||
"timeout": 60000
|
"timeout": 60000
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Meteor: Chrome",
|
||||||
|
"url": "http://localhost:4000",
|
||||||
|
"sourceMapPathOverrides": {
|
||||||
|
"meteor://💻app/*": "${workspaceFolder}/*"
|
||||||
|
},
|
||||||
|
"userDataDir": "${env:HOME}/.vscode/chrome"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
|
|
@ -25,14 +35,16 @@
|
||||||
"runtimeExecutable": "meteor",
|
"runtimeExecutable": "meteor",
|
||||||
"runtimeArgs": [
|
"runtimeArgs": [
|
||||||
"test",
|
"test",
|
||||||
"--inspect-brk=9229",
|
|
||||||
"--port=4040",
|
"--port=4040",
|
||||||
"--exclude-archs=web.browser.legacy,web.cordova",
|
"--exclude-archs=web.browser.legacy,web.cordova",
|
||||||
"--driver-package=meteortesting:mocha",
|
"--driver-package=meteortesting:mocha",
|
||||||
"--settings=settings.json"
|
"--settings=settings.json",
|
||||||
|
"--raw-logs"
|
||||||
],
|
],
|
||||||
|
"env": {
|
||||||
|
"TEST_WATCH": "1"
|
||||||
|
},
|
||||||
"outputCapture": "std",
|
"outputCapture": "std",
|
||||||
"port": 9229,
|
|
||||||
"timeout": 60000
|
"timeout": 60000
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue