{
  "title": "Simple Nunjucks Loader options",
  "type": "object",
  "properties": {
    "dev": {
      "type": "boolean"
    },
    "autoescape": {
      "type": "boolean"
    },
    "throwOnUndefined": {
      "type": "boolean"
    },
    "trimBlocks": {
      "type": "boolean"
    },
    "lstripBlocks": {
      "type": "boolean"
    },
    "jinjaCompat": {
      "type": "boolean",
      "default": false
    },
    "tags": {
      "type": "object",
      "properties": {
        "blockStart": {
          "type": "string"
        },
        "blockEnd": {
          "type": "string"
        },
        "variableStart": {
          "type": "string"
        },
        "variableEnd": {
          "type": "string"
        },
        "commentStart": {
          "type": "string"
        },
        "commentEnd": {
          "type": "string"
        }
      },
      "additionalProperties": false
    },
    "searchPaths": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ],
      "default": "."
    },
    "assetsPaths": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ],
      "default": "."
    },
    "globals": {
      "type": "object",
      "patternProperties": {
        ".+": {
          "type": "string"
        }
      },
      "default": {}
    },
    "extensions": {
      "type": "object",
      "patternProperties": {
        ".+": {
          "type": "string"
        }
      },
      "default": {}
    },
    "filters": {
      "type": "object",
      "patternProperties": {
        ".+": {
          "type": "string"
        }
      },
      "default": {}
    },
    "esModule": {
      "type": "boolean",
      "default": false
    }
  },
  "additionalProperties": false
}
