UNPKG

584 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "SchematicsAngularPWA",
4 "title": "Angular PWA Options Schema",
5 "type": "object",
6 "properties": {
7 "project": {
8 "type": "string",
9 "description": "The name of the project.",
10 "$default": {
11 "$source": "projectName"
12 }
13 },
14 "target": {
15 "type": "string",
16 "description": "The target to apply service worker to.",
17 "default": "build"
18 },
19 "title": {
20 "type": "string",
21 "description": "The title of the application."
22 }
23 },
24 "required": []
25}