@nx/rsbuild
Version:
11 lines • 474 B
TypeScript
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