UNPKG

@nx/rsbuild

Version:

The Nx Plugin for Rsbuild contains an Nx plugin, executors and utilities that support building applications using Rsbuild.

16 lines (15 loc) 535 B
import { CreateNodes } from '@nx/devkit'; export interface RsbuildPluginOptions { buildTargetName?: string; devTargetName?: string; previewTargetName?: string; inspectTargetName?: string; typecheckTargetName?: string; buildDepsTargetName?: string; watchDepsTargetName?: string; } export declare const createNodes: CreateNodes<RsbuildPluginOptions>; /** * @deprecated Use {@link createNodes} instead. This will be removed in Nx 24. */ export declare const createNodesV2: CreateNodes<RsbuildPluginOptions>;