Code files in project include folder

Is there any reason why code files generally get included within the code.js file upon ‘compilation’, but files which reside in the project include folder remain as separate js files, and with the original file name?

This seems to me to make the workings of the webapp more obvious to anyone who is intent on ‘looking’, even after obfuscation

There are bunch of tradeoffs here. You mentioned making the code easy to look at - which can be good or bad, depending on what you are doing. It’s thought that one big file will load a bit faster than a bunch of small ones. We allow you to manage things either way.