Add %NODE_DEBUG_OPTION% as first argument to script that you trying to debug:

"scripts": {
  "start": "node %NODE_DEBUG_OPTION% src/app.js"
},

instead of:

"scripts": {
  "start": "node src/app.js"
},