UNPKG

@nxextensions/firebase-cypress

Version:

An NX Plugin for Firebase Applications that would like to use emulators for E2E testing with Cypress

15 lines (14 loc) 443 B
import { Tree } from '@nx/devkit'; export interface InitGeneratorSchema { js?: boolean; jsx?: boolean; hasTsConfig?: boolean; offsetFromProjectRoot?: string; directory?: string; addPlugin?: boolean; bundler?: 'vite' | 'webpack'; baseUrl?: string; skipNxFirebase?: boolean; } export declare function initGenerator(tree: Tree, options: InitGeneratorSchema): Promise<() => void>; export default initGenerator;