Erro encontrado ao resolver os valores do símbolo estaticamente. Chamadas de função não são suportadas. Considere substituir a função ou lambda?

Eu recebo um erro ao tentar iniciar o npm:

Error encountered resolving symbol values statically. Function calls are not supported. Consider replacing the function or lambda 

com uma referência a uma função exportada (posição 47:19 no arquivo .ts original), resolvendo o símbolo CoreModule em D: /Projects/UI3/src/app/core/core.module.ts

O núcleo é:

providers: [
    {provide: HttpService,
      useFactory: (backend: XHRBackend, options: RequestOptions) => { // Here 47 line number
        return new HttpService(backend, options);
      },
      deps: [XHRBackend, RequestOptions]},
    AuthenticationService,
    DialogsService,
    AuthenticationGuard,
    I18nService
  ]

Então, já havia funcionado antes.

questionAnswers(1)

yourAnswerToTheQuestion