Options for customizing match score calculation behavior.

export interface MatchScoreOptions {
/**
* When true, skips meaningful word overlap and initialism heuristics.
* Useful for regression testing and before/after comparisons.
* @source
*/
shouldDisableMeaningfulOverlap?: boolean;
}
interface MatchScoreOptions {
    shouldDisableMeaningfulOverlap?: boolean;
}

Properties

shouldDisableMeaningfulOverlap?: boolean

When true, skips meaningful word overlap and initialism heuristics. Useful for regression testing and before/after comparisons.

  shouldDisableMeaningfulOverlap?: boolean;