"component": {
"type": "object",
"description": "Options for generating a component.",
"properties": {
"flat": {
"type": "boolean",
"description": "Flag to indicate if a dir is created.",
"default": false
},
"spec": {
"type": "boolean",
"description": "Specifies if a spec file is generated.",
"default": true
},
"inlineStyle": {
"type": "boolean",
"description": "Specifies if the style will be in the ts file.",
"default": false
},
"inlineTemplate": {
"type": "boolean",
"description": "Specifies if the template will be in the ts file.",
"default": false
},
"viewEncapsulation": {
"type": "string",
"description": "Specifies the view encapsulation strategy.",
"enum": [
"Emulated",
"Native",
"None"
]
},
"changeDetection": {
"type": "string",
"description": "Specifies the change detection strategy.",
"enum": [
"Default",
"OnPush"
]
}
}
}https://raw.githubusercontent.com/angular/angular-cli/master/packages/@angular/cli/lib/config/schema.json (322:20)