/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/architect/src/targets-schema.json
39 строк
1 KB
Charles Lyding
build: format all files
29 апр 2021, 02:05
29 апр 2021, 02:05
37a06a7
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "ArchitectTargets", "title": "Targets schema for validating Architect targets configuration.", "type": "object", "description": "A map of available project targets.", "additionalProperties": { "$ref": "#/definitions/target" }, "required": [], "definitions": { "target": { "type": "object", "description": "Target options.", "properties": { "builder": { "type": "string", "description": "The builder used for this package." }, "options": { "$ref": "#/definitions/options" }, "configurations": { "type": "object", "description": "A map of alternative target options.", "additionalProperties": { "$ref": "#/definitions/options" } } }, "additionalProperties": false, "required": ["builder", "options"] }, "options": { "type": "object", "description": "Target options." } } }