UNPKG

@nx-dotnet/core

Version:

- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https

14 lines (13 loc) 565 B
import { TargetConfiguration } from '@nx/devkit'; import { UpdateSwaggerJsonExecutorSchema } from '../executors/update-swagger/schema'; /** * Returns a TargetConfiguration for the nx-dotnet/core:build executor */ export declare function getSwaggerExecutorConfiguration(outputDirectory: string): SwaggerExecutorConfiguration; /** * Configuration options relevant for the build executor */ export type SwaggerExecutorConfiguration = TargetConfiguration & { executor: '@nx-dotnet/core:update-swagger'; options: Partial<UpdateSwaggerJsonExecutorSchema>; };