{ "name": "pipe", "factory": "./src/generators/pipe/pipe", "schema": { "$schema": "https://json-schema.org/schema", "$id": "NxNestPipeGenerator", "title": "Nest Pipe Options Schema", "description": "Nest Pipe Options Schema.", "cli": "nx", "type": "object", "examples": [ { "description": "Generate the pipe `FooPipe` at `myapp/src/app/foo.pipe.ts`", "command": "nx g @nx/nest:pipe myapp/src/app/foo.pipe.ts" }, { "description": "Generate the pipe without providing the file extension. It results in the pipe `FooPipe` at `myapp/src/app/foo.pipe.ts`", "command": "nx g @nx/nest:pipe myapp/src/app/foo" } ], "properties": { "path": { "description": "The file path to the pipe. Relative to the current working directory.", "type": "string", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What is the pipe file path?" }, "skipFormat": { "description": "Skip formatting files.", "type": "boolean", "default": false, "x-priority": "internal" }, "unitTestRunner": { "description": "Test runner to use for unit tests.", "type": "string", "enum": ["jest", "none"], "default": "jest" }, "language": { "description": "Nest pipe language.", "type": "string", "enum": ["js", "ts"] } }, "additionalProperties": false, "required": ["path"], "presets": [] }, "description": "Run the `pipe` NestJS generator with Nx project support.", "implementation": "/packages/nest/src/generators/pipe/pipe.ts", "aliases": [], "hidden": false, "path": "/packages/nest/src/generators/pipe/schema.json", "type": "generator" }