How can I disable code optimization during build process?
I want to disable code optimization during build process to make it easy for duggibg.开发者_运维百科 How can I do it?
Set the OPTIMIZE macro to [] in your config.json's top-level "let" section as:
"let" : {
...
OPTIMIZE : []
}
精彩评论