audiobookshelf/.vscode/launch.json

33 lines
884 B
JSON
Raw Normal View History

{
// 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": "Debug server",
"runtimeExecutable": "npm",
2024-06-27 22:22:13 +02:00
"args": ["run", "dev"],
"skipFiles": ["<node_internals>/**"]
},
{
"type": "node",
"request": "launch",
"name": "Debug client (nuxt)",
"runtimeExecutable": "npm",
2024-06-27 22:22:13 +02:00
"args": ["run", "dev"],
"cwd": "${workspaceFolder}/client",
2024-06-27 22:22:13 +02:00
"skipFiles": ["${workspaceFolder}/<node_internals>/**"]
}
],
"compounds": [
{
"name": "Debug server and client (nuxt)",
2024-06-27 22:22:13 +02:00
"configurations": ["Debug server", "Debug client (nuxt)"]
}
2024-06-27 22:22:13 +02:00
],
"outputCapture": "std"
}