diff --git a/types/webpack/index.d.ts b/types/webpack/index.d.ts index 1aa7f03608..92113449e8 100644 --- a/types/webpack/index.d.ts +++ b/types/webpack/index.d.ts @@ -25,7 +25,6 @@ import { Tapable, HookMap, AsyncParallelBailHook, AsyncParallelHook, AsyncSeriesBailHook, AsyncSeriesHook, AsyncSeriesWaterfallHook } from 'tapable'; import * as UglifyJS from 'uglify-js'; import { RawSourceMap } from 'source-map'; -import * as WebpackDevServer from 'webpack-dev-server'; export = webpack; @@ -113,8 +112,6 @@ declare namespace webpack { parallelism?: number; /** Optimization options */ optimization?: Options.Optimization; - /** A set of options picked up by `webpack-dev-server` to change the dev server's default behavior. */ - devServer?: WebpackDevServer.Configuration; } interface Entry { diff --git a/types/webpack/v3/index.d.ts b/types/webpack/v3/index.d.ts index 72126e056d..79a2d4eed4 100644 --- a/types/webpack/v3/index.d.ts +++ b/types/webpack/v3/index.d.ts @@ -20,7 +20,6 @@ import Tapable = require('tapable'); import * as UglifyJS from 'uglify-js'; import { RawSourceMap } from 'source-map'; -import * as WebpackDevServer from 'webpack-dev-server'; export = webpack; @@ -106,8 +105,6 @@ declare namespace webpack { performance?: Options.Performance; /** Limit the number of parallel processed modules. Can be used to fine tune performance or to get more reliable profiling results */ parallelism?: number; - /** A set of options picked up by `webpack-dev-server` to change the dev server's default behavior. */ - devServer?: WebpackDevServer.Configuration; } interface Entry {