microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/.gitignore
32lines · modecode
| 1 | .DS_Store |
| 2 | !bin |
| 3 | .vscode-test |
| 4 | .cert/ |
| 5 | prod/ |
| 6 | coverage/ |
| 7 | |
| 8 | # Playwright |
| 9 | /test-results/ |
| 10 | /playwright-report/ |
| 11 | /blob-report/ |
| 12 | /playwright/.cache/ |
| 13 | |
| 14 | #interactive apps |
| 15 | command_history.json |
| 16 | |
| 17 | #settings agent |
| 18 | packages/agents/settings/src/settingsActionSchemaV2.ts |
| 19 | examples/schemaStudio/data/settingsCommands.csv |
| 20 | examples/schemaStudio/output/ |
| 21 | |
| 22 | # Per-subscription inventory snapshot written by inventoryEndpoints.mjs. |
| 23 | # Contains actual account names, endpoints, and subdomain names — never commit. |
| 24 | tools/scripts/pools.inventory.json |
| 25 | |
| 26 | # Per-developer YAML config overrides loaded by @typeagent/config. |
| 27 | # Holds local endpoints, deployment names, and (in Phase 1) secrets. |
| 28 | # Never commit. |
| 29 | config.local.yaml |
| 30 | |
| 31 | # Legacy .env files — deprecated, will stop working September 2026. |
| 32 | .env |