This is a failed attempt to make require('./folder/file.js')
return the exports
object created by that file.
The problem is that the IntelliSense engine runs all imported files before running any user code, so I cannot create a personalized module
object for each file separately.
Creating a single global module
object won't let me figure out what exports come from each module. (If it's possible to pass a parameter to another file, I could solve that)