2018-06-05 18:50:06 -07:00

27 lines
682 B
JSON

{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsAngularServiceWorker",
"title": "Angular Service Worker Options Schema",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"target": {
"type": "string",
"description": "The target to apply service worker to.",
"default": "build"
},
"configuration": {
"type": "string",
"description": "The configuration to apply service worker to.",
"default": "production"
}
},
"required": [],
"additionalProperties": false
}