diff --git a/types/webpack/index.d.ts b/types/webpack/index.d.ts index d540a165c4..bdfbc8fd30 100644 --- a/types/webpack/index.d.ts +++ b/types/webpack/index.d.ts @@ -16,6 +16,7 @@ // Ryan Waskiewicz // Kyle Uehlein // Grgur Grisogono +// Rubens Pinheiro Gonçalves Cavalcante // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 @@ -43,6 +44,9 @@ declare function webpack( declare function webpack(options: webpack.Configuration[]): webpack.MultiCompiler; declare namespace webpack { + /** Webpack package version. */ + const version: string | undefined; + interface Configuration { /** Enable production optimizations or development hints. */ mode?: "development" | "production" | "none";