How to disable optimization during the qooxdoo build process?

qooxdoo includes some optimizations during the build process, which makes it difficult to debug the "build only" error. How to disable all optimizations at once?

+3
source share
1 answer

An easy way to achieve this is to set the OPTIMIZE macro to [] in the "let" section of the top level config.json:

"let" : {
   ...
   OPTIMIZE : []
}
+4
source

Source: https://habr.com/ru/post/1725394/


All Articles