tags:

views:

46

answers:

1

I want to disable code optimization during build process to make it easy for duggibg. How can I do it?

+3  A: 

Set the OPTIMIZE macro to [] in your config.json's top-level "let" section as:

"let" : {
...
OPTIMIZE : []
}

Leslie Norman