/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/schematics/angular/config/schema.json
28 строк
1 KB
Charles Lyding
fix(@schematics/angular): add Vitest config generation and runner checks
04 ноя 2025, 17:37
04 ноя 2025, 17:37
8edd3ef
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "SchematicsAngularConfig", "title": "Angular Config File Options Schema", "type": "object", "additionalProperties": false, "description": "Generates configuration files for your project. These files control various aspects of your project's build process, testing, and browser compatibility. This schematic helps you create or update essential configuration files with ease.", "properties": { "project": { "type": "string", "description": "The name of the project where the configuration file should be created or updated.", "$default": { "$source": "projectName" } }, "type": { "type": "string", "description": "Specifies the type of configuration file to generate.", "enum": ["karma", "browserslist", "vitest"], "x-prompt": "Which type of configuration file would you like to create?", "$default": { "$source": "argv", "index": 0 } } }, "required": ["project", "type"] }