UNPKG

@nx/rsbuild

Version:

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

11 lines 474 B
import { type Tree, type ProjectConfiguration } from '@nx/devkit'; import { type Schema } from '../schema'; export interface NormalizedOptions extends Schema { entry: string; target: 'node' | 'web' | 'web-worker'; devServerPort: number; tsConfig: string; projectRoot: string; } export declare function normalizeOptions(tree: Tree, schema: Schema, project: ProjectConfiguration): Promise<NormalizedOptions>; //# sourceMappingURL=normalize-options.d.ts.map