/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/architect/builders/operator-schema.json
41 строка
900 B
Charles Lyding
build: format all files
29 апр 2021, 02:05
29 апр 2021, 02:05
37a06a7
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema", "description": "All input types of builders that perform operations on one or multiple sub-builders.", "type": "object", "properties": { "builders": { "type": "array", "items": { "type": "object", "properties": { "builder": { "type": "string", "pattern": ".*:.*" }, "options": { "type": "object" } }, "required": ["builder"] }, "minItems": 1 }, "targets": { "type": "array", "items": { "type": "object", "properties": { "target": { "type": "string", "pattern": ".*:.*" }, "overrides": { "type": "object" } }, "required": ["target"] }, "minItems": 1 } } }