34 lines
943 B
JSON
34 lines
943 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"program": "${workspaceFolder}/src/index_getcontact",
|
|
"preLaunchTask": "tsc: build - tsconfig.json",
|
|
"outFiles": [
|
|
"${workspaceFolder}/dist/**/*.js"
|
|
],
|
|
"sourceMaps": true
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug TS with ts-node",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"runtimeExecutable": "node",
|
|
"runtimeArgs": [
|
|
"--loader",
|
|
"ts-node/esm",
|
|
"${workspaceFolder}/src/index_getcontact"
|
|
],
|
|
"sourceMaps": true
|
|
}
|
|
]
|
|
} |