I notice in the documentation there is a way to pass custom configuration into a module:
requirejs.config({
baseUrl: \'./js\',
paths: {
jquery: \
It is available, but it's an implementation detail that shouldn't be depended on in production code ( which you've already said it's not for, but fair warning to others! )
The config for the main context is available at require.s.contexts._.config
. Other configurations will also hang off of that contexts
property with whatever name you associated with it.