read-tsconfig-sync
    Preparing search index...

    Interface WatchOptionsDefinition

    interface WatchOptionsDefinition {
        watchOptions?: {
            excludeDirectories?: string[];
            excludeFiles?: string[];
            fallbackPolling?: string;
            force?: string;
            synchronousWatchDirectory?: boolean;
            watchDirectory?: string;
            watchFile?: string;
            [k: string]: unknown;
        };
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    Properties

    watchOptions?: {
        excludeDirectories?: string[];
        excludeFiles?: string[];
        fallbackPolling?: string;
        force?: string;
        synchronousWatchDirectory?: boolean;
        watchDirectory?: string;
        watchFile?: string;
        [k: string]: unknown;
    }

    Settings for the watch mode in TypeScript.

    Type declaration

    • [k: string]: unknown
    • OptionalexcludeDirectories?: string[]

      Remove a list of directories from the watch process.

    • OptionalexcludeFiles?: string[]

      Remove a list of files from the watch mode's processing.

    • OptionalfallbackPolling?: string

      Specify what approach the watcher should use if the system runs out of native file watchers.

    • Optionalforce?: string

      ~

    • OptionalsynchronousWatchDirectory?: boolean

      Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.

    • OptionalwatchDirectory?: string

      Specify how directories are watched on systems that lack recursive file-watching functionality.

    • OptionalwatchFile?: string

      Specify how the TypeScript watch mode works.