Или вариант другой.. я использую так:
Ext.define('MyApp.util.Config', {
singleton : true,
config : {
debug : true
},
constructor : function(config) {
this.initConfig(config);
this.callParent([config]);
}
});
ну и где нужно делаем
require, используем..
MyApp.util.Config.getDebug();