extension-develop
Version:
The develop step of Extension.js
11 lines (10 loc) • 400 B
TypeScript
import { type Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../../webpack-types';
export declare class HandleCommonErrors {
readonly manifestPath: string;
readonly includeList?: FilepathList;
readonly excludeList?: FilepathList;
readonly browser?: string;
constructor(options: PluginInterface);
apply(compiler: Compiler): void;
}