{
  "$schema": "http://json-schema.org/schema",
  "$id": "transloco-keys-manager",
  "title": "Adds Transloco Keys Manager to a project",
  "type": "object",
  "properties": {
    "strategy": {
      "description": "The strategy which will be used to work with the CLI.",
      "x-prompt": "Which strategy do you want to use?",
      "type": "string",
      "default": "both",
      "enum": ["CLI", "Webpack Plugin", "Both"]
    },
    "langs": {
      "type": "string",
      "description": "The languages of the project."
    },
    "translationPath": {
      "type": "string",
      "description": "The folder that contain the root translation files.",
      "default": "src/assets/i18n/",
      "alias": "root"
    },
    "project": {
      "type": "string",
      "description": "The root project name.",
      "$default": {
        "$source": "projectName"
      }
    }
  },
  "required": []
}
