24 lines
569 B
JSON
24 lines
569 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Server",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"--prefix",
|
|
"Server",
|
|
"run-script",
|
|
"debug"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"outFiles": [
|
|
"${workspaceFolder}/out/**/*.js"
|
|
],
|
|
"skipFiles": [
|
|
"**/node_modules/**"
|
|
]
|
|
}
|
|
]
|
|
} |