How do I try SourceMaps with GWT?

https://plus.google.com/u/1/110412141990454266397/posts/Nvr6Se6eAPh

Does anyone know how to try it with the latest GWT build (from svn) and Chrome Canary?

+3


source to share


1 answer


See http://code.google.com/p/google-web-toolkit/wiki/SourceMaps

it's just a matter of adding the following to yours gwt.xml

:

<set-property name="compiler.useSourceMaps" value="true" />

      



The compiler will then output the source maps and required triggers in the JS code (currently only for rearrangement safari

to customize Chrome only).

Beware, this is more of a resource! Get ready to pick up your -Xmx

et al.

+3


source







All Articles