From 254c2ab17877a79b9573c79371cb0fc567eb0514 Mon Sep 17 00:00:00 2001 From: ChristophP Date: Tue, 17 Sep 2024 18:54:08 +0200 Subject: [PATCH] fix: add missing ignore option to type defintion of config (#2224) Co-authored-by: Dido (Christoph Poelt) --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index d56c0532..b5d5c5c5 100644 --- a/index.d.ts +++ b/index.d.ts @@ -109,6 +109,7 @@ export interface NodemonConfig { execMap?: { [key: string]: string }; ignoreRoot?: string[]; watch?: string[]; + ignore?: string[]; stdin?: boolean; runOnChangeOnly?: boolean; verbose?: boolean;