Breakpoints not work in PyCharm/WebStorm/Idea node.js npm debug
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"
},