/** * Per-project DI design graph targets (design.json + design.md), attached to every * project.json project by the inference plugin. Split out of plugin.ts the same way * as runtime-targets.ts. */ import type { TargetConfiguration } from '@nx/devkit'; /** * Create per-project DI graph generation target. cache:false because the point * is to regenerate design.json/design.md on EVERY build so the committed DI * design DAG can never silently drift from the code. */ export declare function createDiGraphGenerateTarget(): TargetConfiguration;