jantimon/html-webpack-plugin

Update Types

tjdo opened this issue · 0 comments

tjdo commented

Is your feature request related to a problem? Please describe.
typings.d.ts is not up to date. The one thing I noticed is chunksSortMode allows none as an option, but TypeScript shows this incorrect because it's not including in the typings:

chunksSortMode?:
      | "auto"
      | "manual"
      | ((entryNameA: string, entryNameB: string) => number);

Describe the solution you'd like
It would be nice to have an updated version of typings.d.ts to allow TS to properly validate.