| 1234567891011121314151617181920212223242526272829 |
- {
- "$schema": "http://json-schema.org/schema",
- "id": "SchematicsAngularServiceWorker",
- "title": "Angular Service Worker Options Schema",
- "type": "object",
- "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.",
- "default": "production"
- }
- },
- "required": [
- "project"
- ]
- }
|