{ "$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": [ "project", "target", "configuration" ] }