projecte_ionic/node_modules/@schematics/angular/service-worker/schema.json
2022-02-09 18:30:03 +01:00

29 lines
811 B
JSON
Executable file

{
"$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"]
}