tsconfig,outFile和angular2

时间:2016-03-02 07:44:31

标签: typescript angular

按照https://angular.io/guide/quickstart上5分钟快速入门的说明,我想我会尝试将以下内容添加到tsconfig:

,outFile = "app/combinedApp.js"

并修改index.html:

System.import('app/combinedApp')

然而,这单独失败,我留下默认文本'正在加载'。控制台上没有显示错误。我错过了什么吗?

1 个答案:

答案 0 :(得分:4)

假设您遵循教程:在tsconfig.json中使用"module": "system"并在app/main.ts中保存了您的bootstap,您应该执行以下操作:

  • 使用脚本代码<script src="app/combinedApp.js"></script>
  • 加载您的捆绑包
  • 而不是System.import('app/combinedApp')使用:

    System.import('app/main')
    

其中app/main是模块的注册名称(您可以在捆绑文件中找到它)。