extension-develop
Version:
The develop step of Extension.js
14 lines (13 loc) • 455 B
TypeScript
import { Compiler } from '@rspack/core';
import { type FilepathList, type PluginInterface } from '../../webpack-types';
/**
* LocalesPlugin is responsible for emitting the locales files
* to the output directory.
*/
export declare class LocalesPlugin {
readonly manifestPath: string;
readonly includeList?: FilepathList;
readonly excludeList?: FilepathList;
constructor(options: PluginInterface);
apply(compiler: Compiler): void;
}