{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "additionalProperties": false,
  "required": ["fileExtensions"],
  "properties": {
    "$schema": {
      "type": "string"
    },
    "fileExtensions": {
      "type": "array",
      "items": {
        "pattern": "\\.[^\\\\/]+$",
        "type": "string"
      }
    },
    "generatedTsFolders": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[^\\\\]+$"
      }
    },
    "sourceFolderPath": {
      "type": "string",
      "pattern": "^[^\\\\]+$"
    }
  }
}
