Как написать угловой модуль для конкретной HTML-страницы в версии выпуска angular 2 RC

#angular

#угловой

Вопрос:

В бета-версии:

 <script>
  System.config({
    transpiler: 'typescript',
    typescriptOptions: { emitDecoratorMetadata: true },
    packages: {'app': {defaultExtension: 'ts'}}
  });
  System.import('/app/page1/environment_main')
        .then(null, console.error.bind(console));
</script>
 

здесь я могу указать, какой модуль будет загружен на мою HTML-страницу, указав System.import(‘/app/page1/environment_main’)

В выпуске RC:

 <script>
System.import('app').catch(function(err){ console.error(err); });
</script>
 

Не могли бы вы помочь мне настроить путь к модулю в выпуске RC?
Я хочу настроить System.import (‘app’) для каждой моей HTML-страницы. Чтобы я мог загружать разные модули на моей другой HTML-странице.