UNPKG

@nx/react

Version:

The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook. - Generators for applica

7 lines (6 loc) 526 B
import { StorybookConfigureSchema } from './schema'; import { type GeneratorCallback, Tree } from '@nx/devkit'; export declare function storybookConfigurationGenerator(host: Tree, schema: StorybookConfigureSchema): Promise<GeneratorCallback>; export declare function storybookConfigurationGeneratorInternal(host: Tree, schema: StorybookConfigureSchema): Promise<GeneratorCallback>; export default storybookConfigurationGenerator; export declare function findWebpackConfig(tree: Tree, projectRoot: string): string | undefined;