"lint": {
"type": "array",
"description": "Properties to be passed to TSLint.",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"files": {
"description": "File glob(s) to lint.",
"default": [],
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"project": {
"type": "string",
"description": "Location of the tsconfig.json project file. Will also use as files to lint if 'files' property not present."
},
"tslintConfig": {
"type": "string",
"description": "Location of the tslint.json configuration."
},
"exclude": {
"description": "File glob(s) to ignore.",
"default": [],
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"required": [
"project"
]
}
}https://raw.githubusercontent.com/angular/angular-cli/master/packages/@angular/cli/lib/config/schema.json (212:11)