我尝试在Angular 9中使用Active Reports,并且完成了该网站上的所有步骤,https://www.grapecity.com/activereportsjs/docs/GettingStarted/QuickStart/QuickStart-Angular仍然在尝试编译我的应用程序时出现此错误:
ERROR in The target entry-point "@grapecity/activereports-angular" has missing dependencies:
- rdlx-model
- @grapecity/ar-js-viewer/ExportPanel
- @grapecity/viewer-core
- @grapecity/ar-js-viewer
- @grapecity/viewer-core/features/search
答案 0 :(得分:0)
Angular 9默认使用Ivy编译器。您可以在tsconfig.app.json文件中禁用常春藤:
"angularCompilerOptions": {
"enableIvy": false
}
这应该可以解决问题。