27 lines
685 B
JSON
27 lines
685 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Pusher",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "node",
|
|
"runtimeArgs": [
|
|
"--nolazy",
|
|
"-r",
|
|
"ts-node/register/transpile-only"
|
|
],
|
|
"args": [
|
|
"server.ts",
|
|
"--example",
|
|
"hello"
|
|
],
|
|
"cwd": "${workspaceRoot}",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"skipFiles": [
|
|
"<node_internals>/**",
|
|
"node_modules/**"
|
|
]
|
|
}
|
|
]
|
|
} |