(args: ArgumentsResolver<CommandParameters>)
| 464 | const workspaceName = path.basename(executionRoot); |
| 465 | const workspaceInfo: BazelWorkspaceInfo = { workspaceName, workspaceRoot, executionRoot }; |
| 466 | |
| 467 | const valdiBaseRelativeFilePaths = await bazel.queryBuildOutputs([VALDI_BASE_TARGET.toString()]); |
| 468 | const valdiBaseAbsoluteFilePaths = valdiBaseRelativeFilePaths.map(v => { |
| 469 | if (isExternalLabel(workspaceInfo, VALDI_BASE_TARGET)) { |
| 470 | return path.resolve(getSymlinkedBazelExecutionRoot(workspaceInfo), v); |
| 471 | } else { |
| 472 | return path.resolve(workspaceRoot, v); |
| 473 | } |
| 474 | }); |
| 475 | const baseTsConfigFilePath = getBaseTsConfigFile(valdiBaseAbsoluteFilePaths); |
nothing calls this directly
no test coverage detected