angular 报错
Error: node_modules/resize-observer-polyfill/src/index.d.ts:19:18 - error TS2717: Subsequent property declarations must have the same type. Property ‘contentRect’
must be of type ‘DOMRectReadOnly’, but here has type ‘DOMRectReadOnly’.
解决
库检查报错,禁用库检查
tsconfig.json
compilerOptions:
{ ...
"skipLibCheck": true,
}