You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
670 B

/**
* Generates AI configuration files for Angular projects. This schematic creates
* configuration files that help AI tools follow Angular best practices, improving the
* quality of AI-generated code and suggestions.
*/
export type Schema = {
/**
* Specifies which AI tools to generate configuration files for. These file are used to
* improve the outputs of AI tools by following the best practices.
*/
tool?: Tool[];
};
export declare enum Tool {
Agents = "agents",
Claude = "claude",
Copilot = "copilot",
Cursor = "cursor",
Gemini = "gemini",
Jetbrains = "jetbrains",
None = "none",
Windsurf = "windsurf"
}