mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
28 lines
691 B
JSON
28 lines
691 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Meteor: Chrome",
|
|
"url": "http://localhost:3000",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Meteor: Node",
|
|
"runtimeExecutable": "/home/wekan/.meteor/meteor",
|
|
"runtimeArgs": ["run", "--inspect-brk=9229"],
|
|
"outputCapture": "std",
|
|
"port": 9229,
|
|
"timeout": 60000
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Meteor: All",
|
|
"configurations": ["Meteor: Node", "Meteor: Chrome"]
|
|
}
|
|
]
|
|
}
|