This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

21
node_modules/@schematics/angular/ai-config/schema.d.ts generated vendored Executable file
View File

@@ -0,0 +1,21 @@
/**
* 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"
}