terrible/.vscode/launch.json

18 lines
344 B
JSON
Raw Permalink Normal View History

2024-03-11 23:03:35 -05:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Terrible",
"skipFiles": [
"<node_internals>/**"
],
"resolveSourceMapLocations": [],
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
}
]
}