I need to set the language_in option on the Closure compiler to prevent the IE8 parse error:
ERROR - Parse error. IE8 (and below) will parse trailing commas in array and object literals incorrectly. If you are targeting newer versions of JS, set the appropriate language_in option.
I did find a post in the closure group relating to this, however, the option is set directly on the java compiler, rather than through one of the build scripts. I need to be able to set it on a build script.
I'm looking at the scripts in closure/bin/build/ and there are several there. I tried adding the option to closure builder, but it failed.
Can someone direct me about how to set this option correctly?
Thank you.