/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/build_angular/src/builders/ng-packagr/schema.json
27 строк
870 B
Alan Agius
feat(@angular-devkit/build-angular): add support for the `poll` option in the library builder
18 апр 2024, 17:40
18 апр 2024, 17:40
53c319a
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema", "title": "ng-packagr Target", "description": "ng-packagr target options for Build Architect. Use to build library projects.", "type": "object", "properties": { "project": { "type": "string", "description": "The file path for the ng-packagr configuration file, relative to the current workspace." }, "tsConfig": { "type": "string", "description": "The full path for the TypeScript configuration file, relative to the current workspace." }, "watch": { "type": "boolean", "description": "Run build when files change.", "default": false }, "poll": { "type": "number", "description": "Enable and define the file watching poll time period in milliseconds." } }, "additionalProperties": false, "required": ["project"] }