@nx/webpack
Version:
16 lines (15 loc) • 514 B
TypeScript
import { type Compiler, type WebpackPluginInstance } from 'webpack';
import { type ProjectGraph } from '@nx/devkit';
export declare class GeneratePackageJsonPlugin implements WebpackPluginInstance {
private readonly options;
constructor(options: {
skipPackageManager?: boolean;
tsConfig: string;
outputFileName: string;
root: string;
projectName: string;
targetName: string;
projectGraph: ProjectGraph;
});
apply(compiler: Compiler): void;
}