Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[web] Do not check types from packages
At this moment we are not using types definitions from other packages but getting errors from @patternfly/react-core ``` > check-types > tsc Error: node_modules/@patternfly/react-core/dist/esm/components/Drawer/DrawerPanelContent.d.ts(3,18): error TS2430: Interface 'DrawerPanelContentProps' incorrectly extends interface 'HTMLProps<HTMLDivElement>'. Types of property 'onResize' are incompatible. Type '(width: number, id: string) => void' is not assignable to type 'ReactEventHandler<HTMLDivElement>'. ... Error: node_modules/@patternfly/react-core/dist/esm/components/NotificationDrawer/NotificationDrawerListItemHeader.d.ts(8,35): error TS2304: Cannot find name 'SVGIconProps'. ``` See https://www.typescriptlang.org/tsconfig#skipLibCheck
- Loading branch information