I'm having some trouble getting server-side debugging of my Meteor project working with Webstorm 7.
I've read this jetbrains support article for Webstorm 6. Webstorm 7 has simplified the node.js remote debug options and there is no longer an option to enter a local directory and remote path.
I've tried:
Running meteor with the node debugger options:
$ NODE_OPTIONS="--debug=47977" meteor
Setting up a node.js remote debug configuration in Webstorm, pointing it at the same port (47977).
Launching the debug session
Setting breakpoints in my coffeescript source files - no dice, never hits breakpoints.
Setting breakpoints in the meteor generated js files in .meteor/local/build/programs/server/app - no dice either.
Has anyone got this working? Obviously it would be ideal to be able to debug directly in my coffeescript, but I'd settle for the js at this point!