read-tsconfig-sync
    Preparing search index...

    Interface TypeAcquisitionDefinition

    interface TypeAcquisitionDefinition {
        typeAcquisition?:
            | {
                enable?: boolean
                | null;
                exclude?: string[] | null;
                include?: string[] | null;
            }
            | null;
    }
    Index
    typeAcquisition?:
        | {
            enable?: boolean
            | null;
            exclude?: string[] | null;
            include?: string[] | null;
        }
        | null

    Auto type (.d.ts) acquisition options for this project. Requires TypeScript version 2.1 or later.

    Type Declaration

    • {
          enable?: boolean | null;
          exclude?: string[] | null;
          include?: string[] | null;
      }
      • Optionalenable?: boolean | null

        Enable auto type acquisition

      • Optionalexclude?: string[] | null

        Specifies a list of type declarations to be excluded from auto type acquisition. Ex. ["jquery", "lodash"]

      • Optionalinclude?: string[] | null

        Specifies a list of type declarations to be included in auto type acquisition. Ex. ["jquery", "lodash"]

    • null