When I'm trying to compile my Angular application I get this error:
ERROR in ...\src\page-sidebar\typings\browser\ambient\node\index.d.ts (426,11): error TS2430: Interface 'NodeBuffer' incorrectly extends interface 'Uint8Array'. Types of property 'fill' are incompatible. Type '(value: any, offset?: number, end?: number) => Buffer' is not assignable to type '(value: number, start?: number, end?: number) => this'. Type 'Buffer' is not assignable to type 'this'.
My TypeScript and typings are updated to latest versions:
"typescript": "2.1.6",
"typings": "2.1.0
Does anyone know where could be the problem?