From 2df10e02e7cc2bfe8735cf0f2378e9bd1af62ded Mon Sep 17 00:00:00 2001 From: EECOLOR Date: Wed, 27 Nov 2019 00:01:03 +0100 Subject: [PATCH] add missing option (#40539) --- types/case-sensitive-paths-webpack-plugin/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/case-sensitive-paths-webpack-plugin/index.d.ts b/types/case-sensitive-paths-webpack-plugin/index.d.ts index 208766a904..b5150c8301 100644 --- a/types/case-sensitive-paths-webpack-plugin/index.d.ts +++ b/types/case-sensitive-paths-webpack-plugin/index.d.ts @@ -20,5 +20,9 @@ declare namespace CaseSensitivePathsWebpackPlugin { * Show more information */ debug?: boolean; + /** + * Run before emit instead of after resolve for individual files + */ + useBeforeEmitHook?: boolean; } }