This commit is contained in:
Nathan Bierema 2020-08-23 18:49:57 -04:00
parent 46e804b5cf
commit eb14dc8670
2 changed files with 4 additions and 2 deletions

View File

@ -227,7 +227,7 @@ interface Props {
dockStyle?: React.CSSProperties | null;
dockHiddenStyle?: React.CSSProperties | null;
duration: number;
children: React.FunctionComponent<{
children?: React.FunctionComponent<{
position: 'left' | 'right' | 'top' | 'bottom';
isResizing: boolean | undefined;
size: number;

View File

@ -1,7 +1,9 @@
{
"extends": "../../tsconfig.react.base.json",
"compilerOptions": {
"outDir": "lib"
"outDir": "lib",
// See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311
"types": ["jest"]
},
"include": ["src"]
}