@nx/rspack
Version:
13 lines (12 loc) • 453 B
TypeScript
import { ExecutorContext } from '@nx/devkit';
import { type Compiler, type RspackPluginInstance } from '@rspack/core';
export declare class GeneratePackageJsonPlugin implements RspackPluginInstance {
private readonly options;
private readonly context;
private readonly projectGraph;
constructor(options: {
tsConfig: string;
outputFileName: string;
}, context: ExecutorContext);
apply(compiler: Compiler): void;
}