import { ProvidePlugin } from "webpack"; export const mode: string; export const entry: string; export namespace module { const rules: { test: RegExp; exclude: RegExp; use: string[]; }[]; } export namespace resolve { const extensions: string[]; } export namespace resolveLoader { const modules: any[]; } export const plugins: ProvidePlugin[]; export namespace output { const filename: string; const publicPath: string; const path: any; }