extension-develop
Version:
The develop step of Extension.js
14 lines (13 loc) • 479 B
TypeScript
import { type Compiler } from '@rspack/core';
import { PluginInterface } from '../webpack-types';
import { type DevOptions } from '../../develop-lib/config-types';
export declare class JsFrameworksPlugin {
static readonly name: string;
readonly manifestPath: string;
readonly mode: DevOptions['mode'];
constructor(options: PluginInterface & {
mode: DevOptions['mode'];
});
private configureOptions;
apply(compiler: Compiler): Promise<void>;
}