i can not use angular-cesiuim because they are using angular2parse as a dependency, which is not compatible with Angular 10.
Maybe only this small change should be done in module.ts add type to return type of forRoot method.
export class Angular2ParseModule {
static forRoot(pipesConfigMap: PipesConfig[]): ModuleWithProviders {
return {
ngModule: Angular2ParseModule,
providers: [{provide: PIPES_CONFIG, multi: true, useValue: pipesConfigMap || []}]
};
}
}