/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/schematics/angular/environments/schema.json
18 строк
831 B
Alan Agius
docs: enhance descriptions for schematics options
15 янв 2025, 19:31
15 янв 2025, 19:31
8ba6b28
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "SchematicsAngularEnvironment", "title": "Angular Environments Options Schema", "type": "object", "additionalProperties": false, "description": "Generates and configures environment files for your project. Environment files allow you to define different settings and configurations for various environments, such as development, testing, and production. This schematic helps you create and manage these files, making it easier to customize your application's behavior for each environment.", "properties": { "project": { "type": "string", "description": "The name of the project where the environment files should be created or updated.", "$default": { "$source": "projectName" } } }, "required": ["project"] }