How to bundle Angular 2 Typescript app using Gulp and SystemJS?

前端 未结 4 2097
庸人自扰
庸人自扰 2021-02-01 03:54

I\'m using Typescript with SystemJS for module loading and Gulp for task runner in my Angular 2 project. The current version of Angular in the project is RC2 but the problem is

4条回答
  •  遥遥无期
    2021-02-01 04:33

    Perhaps this could help:

    System.config({
      "meta": {
        "app.bundle.js": {
          "format": "register"
        }
      }
    });
    

提交回复
热议问题