Angular 2:没有生成app文件夹

时间:2016-12-09 12:23:21

标签: angular angular2-aot

我已经在我的Angular 2项目中实现了aot,最终解决了所有错误

"node_modules/.bin/ngc" -p tsconfig-aot.json

运行成功,但我在aot文件夹中只看到node_modules文件夹,其中没有app文件夹。那么我在哪里可以获得 AppModuleNgFactory 来引导它呢?

1 个答案:

答案 0 :(得分:1)

typescript降级为2.0.2可以解决我的问题。 (取决于您的角度版本)

<强>的package.json

"devDependencies": {
    "typescript": "2.0.2" <-- make it like this

删除 node_modules 文件夹中的typescript模块,然后再次运行npm install

类似问题:https://github.com/angular/angular/issues/10792