If we use the `loader.noConflict` method from the [loader.js](https://github.com/ember-cli/loader.js/blob/master/lib/loader/loader.js), with the following aliases, ```js loader.noConflict({ require: 'myRequire' }) ``` the app fails with an error ``` Uncaught TypeError: Cannot read property 'entries' of undefined at new ModuleRegistry (vendor.js:formatted:68415) ``` because there is no global `require` object, we only have `myRequire` now Related to https://github.com/ember-cli/loader.js/issues/139