Skip to content
AI Monorepos Free online conference · June 23 Join us!

targetToTargetString(target): string

Returns a string in the format “project:target[:configuration]” for the target

NameTypeDescription
targetTargettarget object Examples: typescript targetToTargetString({ project: "proj", target: "test" }) // returns "proj:test" targetToTargetString({ project: "proj", target: "test", configuration: "production" }) // returns "proj:test:production"

string