When using IntelliJ, I encounter an issue where placing a breakpoint in a class sometimes leads me to the MyApp-0.js
file in the debugger, resulting in debugging of generated Javascript. Is there a way to navigate with breakpoints in the corresponding Java file instead?
I am currently on IntelliJ version 13.1.2 and my GWT module is configured with super dev mode settings:
<add-linker name="xsiframe"/>
<set-configuration-property name="devModeRedirectEnabled" value="true"/>
Additionally, I am using the Jetbrains javascript debugging plugin with the latest version of Chrome.
To access sourcemaps from my code server manually, I visit the code server page at
http://localhost:9876/sourcemaps/MyApp/
, where I can view the source. It would be helpful to know how the configuration should be set up in IntelliJ for this functionality.