* Returns the target, undefined when there is no target, false when no target is valid. * @param {ModuleGraph} moduleGraph the module graph * @param {ValidTargetModuleFilter} validTargetModuleFilter a valid target module * @returns {TargetItemWithoutConnection | null | undefined | false} the t
(moduleGraph, validTargetModuleFilter)
| 1578 | * @returns {TargetItemWithoutConnection | null | undefined | false} the target, undefined when there is no target, false when no target is valid |
| 1579 | */ |
| 1580 | findTarget(moduleGraph, validTargetModuleFilter) { |
| 1581 | return this._findTarget(moduleGraph, validTargetModuleFilter, new Set()); |
| 1582 | } |
| 1583 | |
| 1584 | /** |
| 1585 | * Returns the target, undefined when there is no target, false when no target is valid. |
no test coverage detected