evalution
    Preparing search index...

    Interface FileWatchOptions

    Options accepted by FileProvider.watch.

    interface FileWatchOptions {
        cwd?: string;
        ignored?: readonly string[];
        ignoreInitial?: boolean;
    }
    Index

    Properties

    cwd?: string

    The directory from which relative file paths are resolved. Defaults to process.cwd().

    ignored?: readonly string[]

    Glob patterns whose matches are excluded from the watcher.

    ignoreInitial?: boolean

    When true, the watcher does not emit events for files that already exist at startup. Defaults to true.