extension-develop
Version:
The develop step of Extension.js
12 lines (11 loc) • 482 B
TypeScript
import { Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../../webpack-types';
import { DevOptions } from '../../../../develop-lib/config-types';
export declare class AddPublicPathForMainWorld {
readonly manifestPath: string;
readonly browser: DevOptions['browser'];
readonly includeList: FilepathList;
readonly excludeList: FilepathList;
constructor(options: PluginInterface);
apply(_compiler: Compiler): void;
}