I want to store a class into localstorage and therefor stringify it, and parse it back later, but scala.js (0.6.22) with the "builtin (?)" Closure compiler renames the class variables.
If I use the external Google closure compiler to optimize the not optimized fastopt javascript outputfile, variables keep there names, but the resulting file is larger.
Is there any way to take influence on the optimization-process besides scalaJSOptimizerOptions ~= { _.withDisableOptimizer(true/false) } ?