在我当前的项目中实现aot时,我遇到了以下错误,我正在使用外部库AmCharts
路径错误:无法找到名称' AmCharts'。无法找到名称' AmCharts'。
注意:除了没有编译错误外,每件事情都能正常工作
答案 0 :(得分:1)
您需要添加语法
define var AmCharts:any;
在组件中作为示例
import { Component } from '@angular/core';
import { CustomComponent } from './customCompo';
define var AmCharts:any;
@Component({
selector: 'my-app',
templateUrl: 'app/app.html',
})
export class AppComponent { name = 'Angular'; }