UNPKG

@nx/webpack

Version:

The Nx Plugin for Webpack contains executors and generators that support building applications using Webpack.

16 lines (15 loc) 514 B
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; }