]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/angular.json
LP1995211: Angular styleext setting is now called style
[Evergreen.git] / Open-ILS / src / eg2 / angular.json
1 {
2   "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3   "version": 1,
4   "newProjectRoot": "projects",
5   "projects": {
6     "eg": {
7       "root": "",
8       "sourceRoot": "src",
9       "projectType": "application",
10       "i18n": {
11         "sourceLocale": "en-US",
12         "locales": {
13           "cs-CZ": {
14             "translation": "src/locale/messages.cs-CZ.xtb"
15           }
16         }
17       },
18       "architect": {
19         "build": {
20           "builder": "@angular-devkit/build-angular:browser",
21           "options": {
22             "baseHref": "/eg2/",
23             "deployUrl": "/eg2/",
24             "outputPath": "../../web/eg2/",
25             "index": "src/index.html",
26             "main": "src/main.ts",
27             "localize": true,
28             "tsConfig": "src/tsconfig.app.json",
29             "polyfills": "src/polyfills.ts",
30             "assets": [
31               "src/assets",
32               "src/favicon.ico"
33             ],
34             "styles": [
35               "src/styles.css"
36             ],
37             "scripts": [
38               "src/assets/js/marcrecord.js"
39             ],
40             "allowedCommonJsDependencies": [
41               "file-saver",
42               "moment",
43               "moment-timezone"
44             ],
45             "aot": false,
46             "vendorChunk": true,
47             "extractLicenses": false,
48             "buildOptimizer": false,
49             "sourceMap": true,
50             "optimization": false,
51             "namedChunks": true
52           },
53           "configurations": {
54             "production": {
55               "optimization": true,
56               "outputHashing": "all",
57               "sourceMap": false,
58               "namedChunks": false,
59               "aot": true,
60               "extractLicenses": true,
61               "vendorChunk": false,
62               "buildOptimizer": true,
63               "fileReplacements": [
64                 {
65                   "replace": "src/environments/environment.ts",
66                   "with": "src/environments/environment.prod.ts"
67                 }
68               ]
69             }
70           },
71           "defaultConfiguration": ""
72         },
73         "serve": {
74           "builder": "@angular-devkit/build-angular:dev-server",
75           "options": {
76             "browserTarget": "eg:build"
77           },
78           "configurations": {
79             "production": {
80               "browserTarget": "eg:build:production"
81             }
82           }
83         },
84         "extract-i18n": {
85           "builder": "@angular-devkit/build-angular:extract-i18n",
86           "options": {
87             "browserTarget": "eg:build"
88           }
89         },
90         "test": {
91           "builder": "@angular-devkit/build-angular:karma",
92           "options": {
93             "main": "src/test.ts",
94             "karmaConfig": "./karma.conf.js",
95             "polyfills": "src/polyfills.ts",
96             "tsConfig": "src/tsconfig.spec.json",
97             "scripts": [],
98             "styles": [
99               "src/styles.css"
100             ],
101             "assets": [
102               "src/assets",
103               "src/favicon.ico"
104             ]
105           }
106         },
107         "lint": {
108           "builder": "@angular-eslint/builder:lint",
109           "options": {
110             "lintFilePatterns": [
111               "src/**/*.ts",
112               "src/**/*.html"
113             ]
114           }
115         }
116       }
117     },
118     "eg-e2e": {
119       "root": "",
120       "sourceRoot": "",
121       "projectType": "application",
122       "architect": {
123         "e2e": {
124           "builder": "@angular-devkit/build-angular:protractor",
125           "options": {
126             "protractorConfig": "./protractor.conf.js",
127             "devServerTarget": "eg:serve"
128           }
129         },
130         "lint": {
131           "builder": "@angular-eslint/builder:lint",
132           "options": {
133             "lintFilePatterns": [
134               "src/**/*.ts",
135               "src/**/*.html"
136             ]
137           }
138         }
139       }
140     }
141   },
142   "defaultProject": "eg",
143   "schematics": {
144     "@schematics/angular:component": {
145       "prefix": "eg",
146       "style": "css"
147     },
148     "@schematics/angular:directive": {
149       "prefix": "eg"
150     }
151   },
152   "cli": {
153     "defaultCollection": "@angular-eslint/schematics"
154   }
155 }