Theia API Documentation v1.72.1
    Preparing search index...
    interface ParcelWatcherOptions {
        ignored: Minimatch[];
        ignorePatterns: string[];
    }
    Index

    Properties

    ignored: Minimatch[]

    Compiled exclude patterns, used to filter events after they arrive.

    ignorePatterns: string[]

    Raw exclude patterns, passed to the native parcel ignore option so that excluded directories are never crawled or watched in the first place (rather than only having their events filtered out afterwards). This is what actually keeps the number of OS file watches (e.g. inotify watches on Linux) bounded on large workspaces.