代码
import { ThridModule } from 'thrid-module'; // This is a aot compile module on `window` object with `umd`
@NgModule({
imports: [ CommonModule, ThridModule ],
bootstrap: [AppComponent]
})
export class AppModule {}
当我运行它时,我收到了一个错误Unexpected value 'ThridModule' import by module 'AppModule'。请添加 @NgModule 注释。
我该如何解决这个问题?