import type { SourceMapDevToolPlugin, WebpackOptionsNormalized } from 'webpack'; export type MaybeArray = T | T[]; export type MaybePromise = T | Promise; export type SourceMapDevToolPluginOptions = NonNullable< ConstructorParameters[0] >; export type CompilerOptions = WebpackOptionsNormalized;