diff --git a/packages/react-dock/tsconfig.json b/packages/react-dock/tsconfig.json index 391ad640..7b7d1492 100644 --- a/packages/react-dock/tsconfig.json +++ b/packages/react-dock/tsconfig.json @@ -1,9 +1,7 @@ { "extends": "../../tsconfig.react.base.json", "compilerOptions": { - "outDir": "lib", - // See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311 - "types": ["jest"] + "outDir": "lib" }, "include": ["src"] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 0410b5a7..28900e26 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -6,6 +6,8 @@ "strict": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + // See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311 + "types": ["jest"] } }