read-tsconfig-sync
    Preparing search index...

    Interface TypeAcquisitionDefinition

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

    Indexable

    • [k: string]: unknown
    Index

    Properties

    Properties

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

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

    Type declaration

    • [k: string]: unknown
    • 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"]