mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-31 01:34:40 +08:00
31 lines
702 B
JSON
31 lines
702 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": [
|
|
"project",
|
|
"target",
|
|
"configuration"
|
|
]
|
|
}
|