tabber/.vscode/launch.json
2022-01-31 16:36:53 +01:00

22 lines
562 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"type": "node-terminal",
"request": "launch",
"name": "debug",
"command": "yarn serve"
},
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://ws-dso:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
},
]
}