From 6c908b3ec3ea134c93f689fbce4260913211ff87 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 2 Mar 2019 23:17:22 +0100 Subject: [PATCH] fix type --- packages/jest-cli/src/init/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jest-cli/src/init/types.ts b/packages/jest-cli/src/init/types.ts index a13cb5540077..81184fb1aabd 100644 --- a/packages/jest-cli/src/init/types.ts +++ b/packages/jest-cli/src/init/types.ts @@ -8,6 +8,6 @@ import {Config} from '@jest/types'; export type ProjectPackageJson = { - jest?: Partial; + jest?: Partial; scripts?: {[key: string]: string}; };