Haru/.vscode/launch.json

22 lines
515 B
JSON
Raw Normal View History

2021-12-26 17:20:59 +01:00
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
2021-12-28 19:36:49 +01:00
"name": "Server",
2021-12-26 17:20:59 +01:00
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
2021-12-28 19:36:49 +01:00
"debug"
2021-12-26 17:20:59 +01:00
],
"cwd": "${workspaceFolder}",
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"skipFiles": [
"**/node_modules/**"
]
}
]
}