UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

27 lines 1.43 kB
import { AgentRulesOptions } from './set-up-ai-agents/get-agent-rules'; export type { AgentRulesOptions }; export declare function agentsMdPath(root: string): string; export declare function geminiMdPath(root: string): string; export declare function parseGeminiSettings(root: string): any | undefined; export declare function geminiSettingsPath(root: string): string; export declare function claudeMdPath(root: string): string; export declare function claudeMcpJsonPath(root: string): string; export declare function opencodeMcpPath(root: string): string; export declare const codexConfigTomlPath: string; export declare const nxRulesMarkerCommentStart = "<!-- nx configuration start-->"; export declare const nxRulesMarkerCommentDescription = "<!-- Leave the start & end comments to automatically receive updates. -->"; export declare const nxRulesMarkerCommentEnd = "<!-- nx configuration end-->"; export declare const rulesRegex: RegExp; export interface AgentRulesWrappedOptions { writeNxCloudRules: boolean; useH1?: boolean; } export declare const getAgentRulesWrapped: (options: AgentRulesWrappedOptions) => string; export declare const nxMcpTomlHeader = "[mcp_servers.\"nx-mcp\"]"; /** * Get the MCP TOML configuration based on the Nx version. * For Nx 22+, uses 'nx mcp' * For Nx < 22, uses 'nx-mcp' */ export declare function getNxMcpTomlConfig(nxVersion: string): string; //# sourceMappingURL=constants.d.ts.map