Open pawanjaiswal182 opened 1 year ago
Even I have noticed the same error , We need to replcae the DomError to DomException. Because the DOMError is depcrecated now.
Please remove and update the files wherever the Error type is declared as DOMError.
This is causing the build issue in our local. Please do the needful.
@pawanjaiswal182 @uk8566 Thanks for submitting. Are you seeing this on other frameworks outside of Angular?
@charliesantos I'm having the same error in a react app. It looks like the interface DOMError was removed starting with typescript 4.4
https://github.com/microsoft/TypeScript-DOM-lib-generator/issues/1029#issuecomment-869224737
@pawanjaiswal182 any resolution ?
Hi @charliesantos ! Are there any updates on this issue? It takes an hour to fix this in lib, I just don't have permission to create a branch (( Maybe someone from your side can take care of this? Because we are blocked from update higher than Angular 12 with this issue :(
We can achieve this by declaring type DOMError in your angular repo
Thanks for the ping everyone and apologies for the late response. I submitted an internal ticket to fix this but it's currently low in priority due to other higher priority items. Please use the workaround @umair-optevus provided for now. Thank you.
We can achieve this by declaring type DOMError in your angular repo
created new file with src/typings/dom-error.d.ts interface DOMError extends Error { name:string; message: string; } and included in typeRoots but not luck
and i don't want to use skipLibCheck: true
Describe the bug
Getting DOMError while doing ng serve in angular.
Error: node_modules/@twilio/rtc-diagnostics/es5/lib/errors/DiagnosticError.d.ts:10:15 - error TS2304: Cannot find name 'DOMError'.
10 domError: DOMError | DOMException | undefined;