ConfigInfo: {
    deprecated?: boolean;
    isEnvVar: (() => boolean);
    isGlobal: (() => boolean);
    isLocal: (() => boolean);
    key: string;
    location?: Location;
    path?: string;
    value?: AnyJson;
}

Information about a config property.

Type declaration

  • Optional deprecated?: boolean

    True if the config property is deprecated.

  • isEnvVar: (() => boolean)

    true if the config property is an environment variable.

      • (): boolean
      • Returns boolean

  • isGlobal: (() => boolean)

    true if the config property is in the global space.

      • (): boolean
      • Returns boolean

  • isLocal: (() => boolean)

    true if the config property is in the local project.

      • (): boolean
      • Returns boolean

  • key: string

    key The config key.

  • Optional location?: Location

    The location of the config property.

  • Optional path?: string

    The path of the config value.

  • Optional value?: AnyJson

    The config value.