A function to pass to require that should be require after deps have been loaded.
AMD configurations, use module.config() to access in define() functions
{}
A name to give to a loading context. This allows require.js to load multiple versions of modules in a page, as long as each top-level require call specifies a unique context string.
An array of dependencies to load.
If set to true, an error will be thrown if a script loads that does not call define() or have shim exports string value that can be checked.
For the given module prefix, instead of loading the module with the given ID, substitude a different module ID.
{ [id: string]: string; }
Configures loading modules from CommonJS packages.
any
Specify the value for the type="" attribute used for script tags inserted into the document by RequireJS. Default is "text/javascript". To use Firefox's JavasScript 1.8 features, use "text/javascript;version=1.8".
Extra query string arguments appended to URLs that RequireJS uses to fetch resources. Most useful to cachce bust when the browser or server is not configured correcty.
The number of seconds to wait before giving up on loading a script. The default is 7 seconds.
If set to true, document.createElementNS() will be used to create script elements.