silphius/.vscode/launch.json
2024-11-04 12:39:06 -06:00

44 lines
984 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Client",
"webRoot": "${workspaceFolder}",
"outputCapture": "std",
"runtimeArgs": [
"https://localhost:3200/",
"https://localhost:3200/storybook"
]
},
{
"type": "node",
"request": "launch",
"name": "Server",
"skipFiles": [
"<node_internals>/**"
],
"cwd": "${workspaceFolder}",
"env": {
"MKCERT": "1",
"PORT": "3200"
},
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
},
],
"compounds": [
{
"name": "App",
"configurations": [
"Server",
"Client",
],
"stopAll": true,
},
]
}