How can I programmatically, using Node/JS, map a specific line/column number in a JS bundle to its source module (using the source map)?
Update: I used the package sourcemap-explorer
to find the location in the original source. (e.g. $ sourcemap-explorer bundle.js:1:1234
to find the original source for line 1, column 1234 in bundle.js -- given that bundle.js.map exists in the same directory). Thanks to Phil for the suggestion!