Hello i've recently started nestjs and i've created a new project using the nest new command, when i want to start the project with npm run start:dev i get the error below in my console does anyone know the solution of this problem and thanks.
node_modules/typescript/lib/lib.dom.d.ts:16532:11 - error TS2430: Interface 'WebGL2RenderingContext' incorrectly extends interface 'WebGL2RenderingContextBase'.
Types of property 'clearBufferfv' are incompatible.
Type '(buffer: number, drawbuffer: number, values: ArrayLike | Float32Array, srcOffset?: number) => void' is not assignable to type '{ (buffer: number, drawbuffer: number, values: Float32List, srcOffset?: number): void; (buffer: number, drawbuffer: number, values: Iterable, srcOffset?: number): void; }'.
Types of parameters 'values' and 'values' are incompatible. Type 'Iterable' is not assignable to type 'ArrayLike | Float32Array'. Type 'Iterable' is missing the following properties from type 'Float32Array': BYTES_PER_ELEMENT, buffer, byteLength, byteOffset, and 25 more.