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

34 lines (33 loc) 928 B
{ "$schema": "https://json-schema.org/schema", "$id": "NxReactNgInit", "title": "Init React Plugin", "description": "Initialize a React Plugin.", "cli": "nx", "type": "object", "properties": { "skipFormat": { "description": "Skip formatting files.", "type": "boolean", "default": false }, "skipPackageJson": { "description": "Do not add dependencies to `package.json`.", "type": "boolean", "default": false }, "keepExistingVersions": { "type": "boolean", "x-priority": "internal", "description": "Keep existing dependencies versions", "default": false }, "useReactRouterPlugin": { "type": "boolean", "x-priority": "internal", "description": "Add the @nx/react/router-plugin to the nx.json plugins array. Only use this if using React Router for SSR/RSC.", "default": false } }, "required": [] }