角。 AOT。在静态解析符号值时遇到错误。无法解决

时间:2017-08-30 07:26:48

标签: angular angular2-aot

我有test project我尝试使用AoT编译。 使用last commit我添加了打字稿的路径映射:

"paths": {
  "home/*": ["./app/home/*"]
},

用法:

import {HomeComponent} from 'home/home.component';

jit编译工作正常,但在尝试使用AoT时:

./node_modules/.bin/webpack --config webpack.config.aot.js 

我收到下一个错误:

ERROR in Error encountered resolving symbol values statically. Could not resolve home/home.component relative to /home/sergey/projects/aot_test/src/app/app.module.ts., resolving symbol AppModule in /home/sergey/projects/aot_test/src/app/app.module.ts, resolving symbol AppModule in /home/sergey/projects/aot_test/src/app/app.module.ts

PS:我使用Angular 4.1.3版,因为它是我们项目的当前版本。我尝试更新separate brunch中的所有软件包,但它没有帮助,错误仍然存​​在。

PSS:在最后一次提交之前,AoT编译工作正常。

1 个答案:

答案 0 :(得分:0)

我在tsconfig中使用了错误的路径,应该改为:

"paths": {
  "home/*": ["./src/app/home/*"]
},

JIT编译有效,因为它忽略了ts错误,与AoT不同。