interface ReconstructRequiredInput {
    autoSelectIf?: AutoSelectPredicate;
    reconstructFiles?: number[] | "all";
}

Properties

autoSelectIf?: AutoSelectPredicate
reconstructFiles?: number[] | "all"

When confronted with a project of multiple files the question for reconstruct arises wrt. which files to rebuild. This option can be used to either reconstruct all files or only specific files by their index in the project. By default, (for legacy) this will reconstruct the first file (index 0).

Either you can set this to 'all' to reconstruct all files or provide an array of file indices in the files context to reconstruct only those files.