read-tsconfig-sync
    Preparing search index...

    Interface TypeAcquisitionDefinition

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

    Properties

    Properties

    typeAcquisition?: { enable?: boolean; exclude?: string[]; include?: string[] }

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

    Type Declaration

    • Optionalenable?: boolean

      Enable auto type acquisition

    • Optionalexclude?: string[]

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

    • Optionalinclude?: string[]

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