ng-afelio
Version:
Extended Angular CLI
122 lines • 3.86 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "ng-afelio://schema.json",
"title": "Ng Afelio Configuration",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"style": {
"type": "object",
"properties": {
"styleUtils": {
"type": "array",
"items": {
"type": "object",
"properties": {
"input": {
"type": "string"
},
"output": {
"type": "string"
}
},
"required": ["input", "output"]
}
},
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"input": {
"type": "string"
},
"output": {
"type": "string"
},
"global": {
"type": "boolean"
}
},
"required": ["input", "output"]
}
},
"baseInputDirectory": {
"type": "string"
},
"baseOutputDirectory": {
"type": "string"
},
"inputPrefix": {
"type": "string"
},
"addUiKitAssets": {
"type": "boolean"
},
"addAngularStyleShortcut": {
"type": "boolean"
}
},
"additionalProperties": false
},
"i18n": {
"type": "object",
"properties": {
"mainFile": {
"type": "string"
}
},
"additionalProperties": false
},
"environment": {
"type": "object",
"properties": {
"mainFile": {
"type": "string"
}
},
"additionalProperties": false
},
"plugins": {
"type": "object",
"properties": {
"repos": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"gitlab",
"github"
]
},
"url": {
"type": "string"
},
"token": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["name", "url", "type"]
}
}
},
"additionalProperties": false,
"required": ["repos"]
},
"defaultProject": {
"type": "string"
}
},
"additionalProperties": false,
"required": [],
"definitions": {}
}