@nxextensions/firebase
Version:
An Nx plugin for firebase applications that would like to run the emulators in conjunction with their app
12 lines (11 loc) • 604 B
TypeScript
import { CreateNodesContext, CreateNodesResult, CreateNodesV2, ProjectConfiguration } from '@nx/devkit';
export interface PluginOptions {
serveTargetName?: string;
deployTargetName?: string;
includeHosting?: boolean;
saveDataDirectory?: string;
}
type PluginTargets = Pick<ProjectConfiguration, 'targets' | 'metadata'>;
export declare const createNodesV2: CreateNodesV2<PluginOptions>;
export declare function createNodesInternal(configFile: string, options: PluginOptions, context: CreateNodesContext, targetsCache: Record<string, PluginTargets>): Promise<CreateNodesResult>;
export {};