source: trip-planner-front/node_modules/@schematics/angular/service-worker/schema.json@ 6a80231

Last change on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 811 bytes
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "SchematicsAngularServiceWorker",
4 "title": "Angular Service Worker Options Schema",
5 "type": "object",
6 "additionalProperties": false,
7 "description": "Pass this schematic to the \"run\" command to create a service worker",
8 "properties": {
9 "project": {
10 "type": "string",
11 "description": "The name of the project.",
12 "$default": {
13 "$source": "projectName"
14 }
15 },
16 "target": {
17 "type": "string",
18 "description": "The target to apply service worker to.",
19 "default": "build"
20 },
21 "configuration": {
22 "type": "string",
23 "description": "The configuration to apply service worker to.",
24 "x-deprecated": "No longer has an effect."
25 }
26 },
27 "required": ["project"]
28}
Note: See TracBrowser for help on using the repository browser.