You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
811 B
28 lines
811 B
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "SchematicsAngularServiceWorker",
|
|
"title": "Angular Service Worker Options Schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"description": "Pass this schematic to the \"run\" command to create a service worker",
|
|
"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.",
|
|
"x-deprecated": "No longer has an effect."
|
|
}
|
|
},
|
|
"required": ["project"]
|
|
}
|