This commit is contained in:
2024-11-27 11:40:43 +01:00
parent 53e7db435c
commit 95fe01ad86
51 changed files with 4175 additions and 456 deletions

39
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,39 @@
{
"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)"
]
}
]
}