mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 01:39:05 +00:00
19 lines
426 B
JSON
19 lines
426 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"program": "${workspaceFolder}/server.js",
|
|
"outFiles": ["${workspaceFolder}/**/*.js"],
|
|
"outputCapture": "std",
|
|
"resolveSourceMapLocations": [
|
|
"${workspaceFolder}/**",
|
|
"!**/node_modules/**"
|
|
]
|
|
}
|
|
]
|
|
}
|