v1
This commit is contained in:
39
.vscode/launch.json
vendored
Normal file
39
.vscode/launch.json
vendored
Normal 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)"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user