Files
pyrofetes-frontend/node_modules/@schematics/angular/ai-config/schema.d.ts
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

22 lines
647 B
TypeScript
Executable File

/**
* 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 {
Claude = "claude",
Copilot = "copilot",
Cursor = "cursor",
Gemini = "gemini",
Jetbrains = "jetbrains",
None = "none",
Windsurf = "windsurf"
}