mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Context 7 is a popular tool for providing context to LLM-based coding tools. This config file tells Context 7 which parts of the repo are relevant for these LLM-based dev tools. See https://github.com/upstash/context7/blob/master/docs/adding-projects.md. PR Close #63000
29 lines
754 B
JSON
29 lines
754 B
JSON
{
|
|
"$schema": "https://context7.com/schema/context7.json",
|
|
"projectTitle": "Angular",
|
|
"description": "Angular is a web framework that empowers developers to build fast, reliable applications",
|
|
"folders": [
|
|
"adev/src/content/guide/**",
|
|
"adev/src/content/ecosystem/**",
|
|
"adev/src/content/reference/errors",
|
|
"adev/src/content/reference/migrations",
|
|
"adev/src/content/reference/extended-diagnostics",
|
|
"adev/src/content/best-practices/**"
|
|
],
|
|
"excludeFolders": [
|
|
"third_party",
|
|
"integration",
|
|
"modules",
|
|
"goldens",
|
|
"contributing-docs",
|
|
"scripts",
|
|
"tools"
|
|
],
|
|
"excludeFiles": [
|
|
"CHANGELOG.md",
|
|
"CHANGELOG_ARCHIVE.md",
|
|
"CODE_OF_CONDUCT.md",
|
|
"CONTRIBUTING.md",
|
|
"LICENSE"
|
|
]
|
|
}
|