See waitSeconds
config value from RequireJS docs:
http://requirejs.org/docs/api.html#config-waitSeconds
Per the docs, the default is 7 seconds. You can set it in your require.config call like this:
require.config( {
waitSeconds : 30,
paths : {
//etc..
},