Reputation: 355
I have a project with Typescript and Electon. I want the console errors referenced to Typescript files, instead of javascript minified files. I read it could be done with source maps.
I see some references like this but I have not achieved my goal.
Upvotes: 8
Views: 4766
Reputation: 42858
I was able to get it to work by enabling both inlineSourceMap
and inlineSources
in tsconfig.json.
Upvotes: 3
Reputation: 10040
I was able to get this working with the npm module 'source-map-support'.
Install it in your project as follows:
npm install --save source-map-support
Then require it into your Electron renderer process at the first line of code as follows:
require('source-map-support').install();
See here for full details: https://www.npmjs.com/package/source-map-support
Upvotes: 3