UNPKG

@nx/rspack

Version:

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

13 lines (12 loc) 453 B
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; }