silphius/.vscode/launch.json
2024-05-25 16:00:38 -05:00

54 lines
1.3 KiB
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": "node",
"request": "launch",
"name": "Silphius Dev",
"skipFiles": [
"<node_internals>/**"
],
"resolveSourceMapLocations": [],
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev", "--", "--host", "0.0.0.0"],
},
{
"type": "node",
"request": "launch",
"name": "Storybook Dev",
"skipFiles": [
"<node_internals>/**"
],
"resolveSourceMapLocations": [],
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "storybook", "--", "--no-open"],
},
{
"type": "chrome",
"request": "launch",
"name": "Chrome",
"url": "",
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"http://localhost:5173",
"http://localhost:6006",
]
},
],
"compounds": [
{
"name": "Silphius",
"configurations": [
"Silphius Dev",
"Storybook Dev",
"Chrome",
],
"stopAll": true,
}
]
}