read-tsconfig-sync
    Preparing search index...

    Interface WatchOptionsDefinition

    interface WatchOptionsDefinition {
        watchOptions?:
            | {
                excludeDirectories?: string[]
                | null;
                excludeFiles?: string[] | null;
                fallbackPolling?: string | null;
                force?: string | null;
                synchronousWatchDirectory?: boolean | null;
                watchDirectory?: string | null;
                watchFile?: string | null;
            }
            | null;
    }
    Index
    watchOptions?:
        | {
            excludeDirectories?: string[]
            | null;
            excludeFiles?: string[] | null;
            fallbackPolling?: string | null;
            force?: string | null;
            synchronousWatchDirectory?: boolean | null;
            watchDirectory?: string | null;
            watchFile?: string | null;
        }
        | null

    Settings for the watch mode in TypeScript.

    Type Declaration

    • {
          excludeDirectories?: string[] | null;
          excludeFiles?: string[] | null;
          fallbackPolling?: string | null;
          force?: string | null;
          synchronousWatchDirectory?: boolean | null;
          watchDirectory?: string | null;
          watchFile?: string | null;
      }
      • OptionalexcludeDirectories?: string[] | null

        Remove a list of directories from the watch process.

      • OptionalexcludeFiles?: string[] | null

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

      • OptionalfallbackPolling?: string | null

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

      • Optionalforce?: string | null

        ~

      • OptionalsynchronousWatchDirectory?: boolean | null

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

      • OptionalwatchDirectory?: string | null

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

      • OptionalwatchFile?: string | null

        Specify how the TypeScript watch mode works.

    • null