forked from Wykks/ngx-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular.json
229 lines (229 loc) · 7.47 KB
/
angular.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-mapbox-gl": {
"root": "projects/ngx-mapbox-gl",
"sourceRoot": "projects/ngx-mapbox-gl/src",
"projectType": "library",
"prefix": "mgl",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ngx-mapbox-gl/tsconfig.lib.json",
"project": "projects/ngx-mapbox-gl/ng-package.json"
},
"configurations": {
"production": {
"project": "projects/ngx-mapbox-gl/ng-package.prod.json",
"tsConfig": "projects/ngx-mapbox-gl/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ngx-mapbox-gl/src/test.ts",
"tsConfig": "projects/ngx-mapbox-gl/tsconfig.spec.json",
"karmaConfig": "projects/ngx-mapbox-gl/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/ngx-mapbox-gl/**/*.ts",
"projects/ngx-mapbox-gl/**/*.html"
]
}
}
}
},
"showcase": {
"root": "projects/showcase/",
"sourceRoot": "projects/showcase/src",
"projectType": "application",
"prefix": "showcase",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"allowedCommonJsDependencies": [
"@mapbox/mapbox-gl-geocoder",
"@mapbox/mapbox-sdk",
"suggestions"
],
"outputPath": "dist/showcase",
"index": "projects/showcase/src/index.html",
"main": "projects/showcase/src/main.ts",
"polyfills": "projects/showcase/src/polyfills.ts",
"tsConfig": "projects/showcase/tsconfig.app.json",
"assets": [
"projects/showcase/src/favicon.ico",
"projects/showcase/src/assets",
"projects/showcase/src/app/demo/examples"
],
"styles": [
"projects/showcase/src/styles.css"
],
"scripts": [
"node_modules/marked/lib/marked.js",
"node_modules/prismjs/prism.js"
],
"showCircularDependencies": false,
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "projects/showcase/src/environments/environment.ts",
"with": "projects/showcase/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"showCircularDependencies": false
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "showcase:build"
},
"configurations": {
"production": {
"browserTarget": "showcase:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "showcase:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/showcase/src/test.ts",
"polyfills": "projects/showcase/src/polyfills.ts",
"tsConfig": "projects/showcase/tsconfig.spec.json",
"karmaConfig": "projects/showcase/karma.conf.js",
"styles": [
"projects/showcase/src/styles.css"
],
"scripts": [
"node_modules/marked/lib/marked.js",
"node_modules/prismjs/prism.js"
],
"assets": [
"projects/showcase/src/favicon.ico",
"projects/showcase/src/assets"
]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/showcase/**/*.ts",
"projects/showcase/**/*.html"
]
}
}
}
},
"showcase-e2e": {
"root": "projects/showcase-e2e/",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "projects/showcase-e2e/protractor.conf.js",
"devServerTarget": "showcase:serve"
},
"configurations": {
"production": {
"devServerTarget": "showcase:serve:production"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/showcase-e2e/**/*.ts",
"projects/showcase-e2e/**/*.html"
]
}
}
}
},
"ngx-mapbox-gl-geocoder-control": {
"projectType": "library",
"root": "projects/ngx-mapbox-gl-geocoder-control",
"sourceRoot": "projects/ngx-mapbox-gl-geocoder-control/src",
"prefix": "mgl",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ngx-mapbox-gl-geocoder-control/tsconfig.lib.json",
"project": "projects/ngx-mapbox-gl-geocoder-control/ng-package.json"
},
"configurations": {
"production": {
"project": "projects/ngx-mapbox-gl-geocoder-control/ng-package.prod.json",
"tsConfig": "projects/ngx-mapbox-gl-geocoder-control/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ngx-mapbox-gl-geocoder-control/src/test.ts",
"tsConfig": "projects/ngx-mapbox-gl-geocoder-control/tsconfig.spec.json",
"karmaConfig": "projects/ngx-mapbox-gl-geocoder-control/karma.conf.js"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/ngx-mapbox-gl-geocoder-control/**/*.ts",
"projects/ngx-mapbox-gl-geocoder-control/**/*.html"
]
}
}
}
}
},
"defaultProject": "ngx-mapbox-gl",
"cli": {
"analytics": "2b945751-c795-4db1-b8ac-172907057b11",
"defaultCollection": "@angular-eslint/schematics"
}
}