"test": {
"type": "object",
"description": "Configuration for unit tests.",
"additionalProperties": false,
"properties": {
"karma": {
"type": "object",
"additionalProperties": false,
"properties": {
"config": {
"type": "string",
"description": "Path to the karma config file."
}
}
},
"codeCoverage": {
"type": "object",
"additionalProperties": false,
"properties": {
"exclude": {
"type": "array",
"description": "Globs to exclude from code coverage.",
"default": [],
"items": {
"type": "string"
}
}
}
}
}
}https://raw.githubusercontent.com/angular/angular-cli/master/packages/@angular/cli/lib/config/schema.json (263:11)