extension-develop
Version:
The develop step of Extension.js
18 lines (17 loc) • 543 B
TypeScript
import { Compiler } from '@rspack/core';
import { PluginInterface, FilepathList } from '../../../webpack-types';
export declare class CheckManifestFiles {
readonly manifestPath: string;
readonly includeList?: FilepathList;
readonly excludeList?: FilepathList;
constructor(options: PluginInterface);
extractPaths(value: string | string[] | {
light: string;
dark: string;
} | {
light: string;
dark: string;
}[]): any[];
private handleErrors;
apply(compiler: Compiler): void;
}