I've used the Node.js Inspector module to produce a CPU profile (.cpuprofile file) from a production server. I'm able to load it into chrome dev tools (Performance tab) without issue.
The flame graph and supporting function calls are great, but without being able to link up my source map(s) I'm unable to decipher the calls due to my preprocessor.
You can attach JS source maps when using chrome tools to debug JS on the page (sources tab). How can I attach my source maps to a profile I uploaded to chrome dev tools (Performance tab)?
Note: I am using one of the officially supported preprocessors.