{
  "$schema": "http://json-schema.org/schema",
  "id": "storybook-stories",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "Library or application name",
      "$default": {
        "$source": "projectName",
        "index": 0
      },
      "x-prompt": "What's name of the project for which you want to generate stories?"
    },
    "generateCypressSpecs": {
      "type": "boolean",
      "description": "Automatically generate *.spec.ts files in the cypress e2e app generated by the cypress-configure schematic.",
      "x-prompt": "Do you want to generate Cypress specs as well?"
    },
    "js": {
      "type": "boolean",
      "description": "Generate JavaScript files rather than TypeScript files.",
      "default": false
    }
  },
  "required": ["project"]
}
