@openactive/harvesting-utils
Version:
Utils library for harvesting RPDE feeds
25 lines • 736 B
JSON
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Simple RPDE Harvester",
"skipFiles": [
"<node_internals>/**"
],
// "program": "${workspaceFolder}/examples/simple-rpde-harvester.js",
"program": "${workspaceFolder}/src/abc.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": [
"${workspaceFolder}/built-types/**/*.js"
],
"env": {
"NODE_TLS_REJECT_UNAUTHORIZED":"0"
}
}
]
}