I\'m new to requireJS, and I\'m trying to figure out why I can\'t get normal errors.
I\'m using this, right after the requirejs file is loaded, but before any modules ar
Remove the "timeout" check. It's keeping you from seeing the modules you're having a problem with unless the problem happens to be a timeout.
requirejs.onError = function (err) { console.log(err.requireType); console.log('modules: ' + err.requireModules); throw err; };