Im getting this compilation error in my Angular 2 app:
TS7015: Element implicitly has an \'any\' type because index expression is not of type \'number\'.
Not the OP's direct issue but for users encountering this error for libraries not under their control, one can suppress this error is by adding:
{ ... "suppressImplicitAnyIndexErrors": true, ... }
to the tsconfig.json file.
tsconfig.json