exclusionPatterns
A list of glob patterns for documents that should not be indexed. If a document that matches an inclusion prefix or inclusion pattern also matches an exclusion pattern, the document is not indexed.
Some examples are:
**.png , .jpg will exclude all PNG and JPEG image files in a directory (files with the extensions .png and .jpg).
internal will exclude all files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'.
**/internal will exclude all internal-related files in a directory and its subdirectories.