{
  "$schema": "http://json-schema.org/schema",
  "id": "ng-toolkit pwa",
  "title": "Angular Application Options Schema",
  "type": "object",
  "properties": {
    "clientProject": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "skipInstall": {
      "description": "Skip installation of dependencies.",
      "type": "boolean",
      "default": false
    },
    "directory": {
      "description": "The directory name to create the workspace in.",
      "type": "string",
      "default": "."
    },
    "serverModule": {
      "description": "Path to application server module.",
      "type": "string"
    }
  },
  "required": []
}