Utility TypeScript @ 2.0.0-beta
    Preparing search index...

    Interface TsConfig

    A valid TsConfig object.

    Updated 2024-02-11 from TS docs.

    2.0.0-alpha

    interface TsConfig {
        compilerOptions?: Json.TsConfig.CompilerOpts;
        exclude?: string[];
        extends?: string | string[];
        files?: false | string[];
        include?: string | string[];
        typeAcquisition?: {
            disableFilenameBasedTypeAcquisition?: boolean;
            enable?: boolean;
            exclude?: string[];
            include?: string[];
        };
        watchOptions?: {
            excludeDirectories?: string[];
            excludeFiles?: string[];
            fallbackPolling?: | "fixedinterval"
            | "priorityinterval"
            | "dynamicpriority"
            | "fixedchunksize ";
            synchronousWatchDirectory?: boolean;
            watchDirectory?: | "fixedpollinginterval"
            | "dynamicprioritypolling"
            | "fixedchunksizepolling"
            | "usefsevents";
            watchFile?: | "fixedpollinginterval"
            | "prioritypollinginterval"
            | "dynamicprioritypolling"
            | "fixedchunksizepolling"
            | "usefsevents"
            | "usefseventsonparentdirectory";
        };
    }
    Index

    Properties

    compilerOptions?: Json.TsConfig.CompilerOpts

    Value of the TsConfig.compilerOptions property.

    exclude?: string[]
    extends?: string | string[]
    files?: false | string[]
    include?: string | string[]
    typeAcquisition?: {
        disableFilenameBasedTypeAcquisition?: boolean;
        enable?: boolean;
        exclude?: string[];
        include?: string[];
    }
    watchOptions?: {
        excludeDirectories?: string[];
        excludeFiles?: string[];
        fallbackPolling?:
            | "fixedinterval"
            | "priorityinterval"
            | "dynamicpriority"
            | "fixedchunksize ";
        synchronousWatchDirectory?: boolean;
        watchDirectory?: | "fixedpollinginterval"
        | "dynamicprioritypolling"
        | "fixedchunksizepolling"
        | "usefsevents";
        watchFile?: | "fixedpollinginterval"
        | "prioritypollinginterval"
        | "dynamicprioritypolling"
        | "fixedchunksizepolling"
        | "usefsevents"
        | "usefseventsonparentdirectory";
    }