source: trip-planner-front/node_modules/@angular-devkit/build-angular/src/ng-packagr/schema.json@ 6a3a178

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

initial commit

  • Property mode set to 100644
File size: 732 bytes
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "title": "ng-packagr Target",
4 "description": "ng-packagr target options for Build Architect. Use to build library projects.",
5 "type": "object",
6 "properties": {
7 "project": {
8 "type": "string",
9 "description": "The file path for the ng-packagr configuration file, relative to the current workspace."
10 },
11 "tsConfig": {
12 "type": "string",
13 "description": "The full path for the TypeScript configuration file, relative to the current workspace."
14 },
15 "watch": {
16 "type": "boolean",
17 "description": "Run build when files change.",
18 "default": false
19 }
20 },
21 "additionalProperties": false,
22 "required": ["project"]
23}
Note: See TracBrowser for help on using the repository browser.