Enum tsconfig_includes::Calculation
source · pub enum Calculation {
Estimate,
Exact,
}Expand description
Method to use to enumerate inputs to the TypeScript compiler.
Variants§
Estimate
Estimate the true list of inputs to the TypeScript compiler by listing
the files matching the tsconfig’s include globs.
Exact
Calculate the exact list of inputs to the TypeScript compiler by
invoking tsc --listFilesOnly.
Trait Implementations§
source§impl Clone for Calculation
impl Clone for Calculation
source§fn clone(&self) -> Calculation
fn clone(&self) -> Calculation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more