nx-serverless-cdk
Version:
nx-serverless-cdk is an Nx plugin for creating AWS CDK applications and libraries inside an Nx monorepo. It offers the possibility to test and debug CDK applications as well as AWS Lambda functions locally. The plugin provides the full flexibility of the
8 lines (7 loc) • 557 B
TypeScript
import { CreateDependencies, CreateNodes, TargetConfiguration } from '@nx/devkit';
import { CustomTargetNames } from '../generators/cdk-app/create-project-configuration';
export type NxServerlessCdkPluginOptions = CustomTargetNames;
export declare const calculatedTargets: Record<string, Record<string, TargetConfiguration>>;
export declare const targetsCache: Record<string, Record<string, TargetConfiguration<any>>>;
export declare const createDependencies: CreateDependencies;
export declare const createNodes: CreateNodes<NxServerlessCdkPluginOptions>;