Fix /api/getRequests endpoint #1

Closed
Ghost wants to merge 3 commits from temp-jenn into temp
3 changed files with 20 additions and 2 deletions
Showing only changes of commit 312f1324ca - Show all commits

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Node: Nodemon",
"processId": "${command:PickProcess}",
"restart": true,
"protocol": "inspector"
}
]
}

View file

@ -2,5 +2,9 @@
"watch": ["src"],
"ext": "ts",
"ignore": ["src/**/*.spec.ts"],
"exec": "ts-node ./src/app.ts"
"execMap": {
"ts": "node --require ts-node/register"
},
"verbose": true,
"restartable": "rs"
}

View file

@ -17,6 +17,7 @@
"typescript": "^3.9.5"
},
"scripts": {
"start": "nodemon"
"start": "nodemon src/app.ts",
"debug": "nodemon --inspect src/app.ts"
}
}