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.
I was able to get it to work by enabling both inlineSourceMap
and inlineSources
in tsconfig.json.
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With