packages/store/schematics/src/starter-kit/schema.json

Summary

Maintainability
Test Coverage
{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsNgxsStarterKit",
  "title": "Ngxs Starter Kit Options Schema",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "The path to create the starter kit. Relative to the specified (or default) project."
    },
    "spec": {
      "type": "boolean",
      "description": "Specifies if a spec file is generated.",
      "default": true
    },
    "standalone": {
      "type": "boolean",
      "description": "Explicitly set whether should generate standalone APIs for the generated starter kit."
    }
  },
  "required": ["path"]
}