UNPKG

@schematics/angular

Version:
29 lines (28 loc) 1.04 kB
{ "$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"], "x-prompt": "Which type of configuration file would you like to create?", "$default": { "$source": "argv", "index": 0 } } }, "required": ["project", "type"] }