From 51b9b20ae6ded1408a9fb67e9fb28aacc95adce4 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}; };