From 6ad0e556276da22b17747b15eb0e52bb9aa77c75 Mon Sep 17 00:00:00 2001 From: Alexander Akait <4567934+alexander-akait@users.noreply.github.com> Date: Fri, 9 Jun 2023 21:25:57 +0300 Subject: [PATCH] fix(types): fix type for `chunkSortMode` (#1798) --- typings.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/typings.d.ts b/typings.d.ts index b07bc354..8440fe8e 100644 --- a/typings.d.ts +++ b/typings.d.ts @@ -52,6 +52,8 @@ declare namespace HtmlWebpackPlugin { */ chunksSortMode?: | "auto" + // `none` is deprecated and an alias for `auto` now. + | "none" | "manual" | ((entryNameA: string, entryNameB: string) => number); /**