Files
TvAPP/.vscode/launch.json
2024-11-27 11:40:43 +01:00

40 lines
842 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "localhost (Chrome)",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8100",
"webRoot": "${workspaceFolder}/www",
"preLaunchTask": "ng serve",
"sourceMaps": true,
"trace": true
},
{
"name": "Debug node process",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/capacitor.config.ts",
"skipFiles": [
"<node_internals/**"
],
"stopOnEntry": true,
"console": "externalTerminal",
"env": {
"port": "5000"
}
}
],
"compounds": [
{
"name": "Launch Node and Browser",
"configurations": [
"Debug node process",
"localhost (Chrome)"
]
}
]
}