UNPKG

@nxextensions/firebase-cypress

Version:

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

14 lines (13 loc) 456 B
import { Tree } from '@nx/devkit'; import { ConfigGeneratorSchema } from './schema'; export interface NormalizedConfigGeneratorSchema { js?: boolean; jsx?: boolean; hasTsConfig?: boolean; offsetFromProjectRoot?: string; directory?: string; bundler?: 'vite' | 'webpack'; baseUrl?: string; } export declare function configGenerator(tree: Tree, options: ConfigGeneratorSchema): Promise<() => void>; export default configGenerator;