forked from videogular/ngx-videogular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
194 lines (194 loc) · 5.99 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
{
"version": 1,
"projects": {
"ngx-videogular-demo": {
"projectType": "application",
"schematics": {
"@nrwl/angular:component": {
"style": "scss"
}
},
"root": "docs/ngx-videogular-demo",
"sourceRoot": "docs/ngx-videogular-demo/src",
"prefix": "vg",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/docs/ngx-videogular-demo",
"index": "docs/ngx-videogular-demo/src/index.html",
"main": "docs/ngx-videogular-demo/src/main.ts",
"polyfills": "docs/ngx-videogular-demo/src/polyfills.ts",
"tsConfig": "docs/ngx-videogular-demo/tsconfig.app.json",
"assets": [
"docs/ngx-videogular-demo/src/favicon.ico",
"docs/ngx-videogular-demo/src/assets"
],
"styles": [
"docs/ngx-videogular-demo/src/styles.scss",
"node_modules/normalize.css/normalize.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "docs/ngx-videogular-demo/src/environments/environment.ts",
"with": "docs/ngx-videogular-demo/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "ngx-videogular-demo:build"
},
"configurations": {
"production": {
"browserTarget": "ngx-videogular-demo:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngx-videogular-demo:build"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"docs/ngx-videogular-demo/tsconfig.app.json",
"docs/ngx-videogular-demo/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!docs/ngx-videogular-demo/**/*"]
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "docs/ngx-videogular-demo/src/test.ts",
"tsConfig": "docs/ngx-videogular-demo/tsconfig.spec.json",
"karmaConfig": "docs/ngx-videogular-demo/karma.conf.js",
"polyfills": "docs/ngx-videogular-demo/src/polyfills.ts",
"styles": [],
"scripts": [],
"assets": []
}
}
}
},
"ngx-videogular-e2e": {
"root": "docs/ngx-videogular-e2e",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "docs/ngx-videogular-e2e/protractor.conf.js",
"devServerTarget": "ngx-videogular:serve"
},
"configurations": {
"production": {
"devServerTarget": "ngx-videogular:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "docs/ngx-videogular-e2e/tsconfig.e2e.json",
"exclude": ["**/node_modules/**", "!docs/ngx-videogular-e2e/**/*"]
}
}
}
},
"ngx-videogular": {
"projectType": "library",
"root": "libs/ngx-videogular",
"sourceRoot": "libs/ngx-videogular",
"prefix": "vg",
"architect": {
"build": {
"builder": "@nrwl/angular:package",
"options": {
"tsConfig": "libs/ngx-videogular/tsconfig.lib.json",
"project": "libs/ngx-videogular/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/ngx-videogular/tsconfig.lib.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"libs/ngx-videogular/tsconfig.lib.json",
"libs/ngx-videogular/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!libs/ngx-videogular/**/*"]
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "libs/ngx-videogular/test.ts",
"tsConfig": "libs/ngx-videogular/tsconfig.spec.json",
"karmaConfig": "libs/ngx-videogular/karma.conf.js"
}
},
"deploy": {
"builder": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
}
}
},
"schematics": {
"@nrwl/angular:component": {
"style": "scss"
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/angular",
"packageManager": "npm"
},
"schematics": {
"@nrwl/angular:application": {
"unitTestRunner": "karma",
"e2eTestRunner": "protractor"
},
"@nrwl/angular:library": {
"unitTestRunner": "karma"
},
"@schematics/angular:component": {
"style": "scss"
},
"@schematics/angular:library": {
"style": "scss"
}
},
"defaultProject": "ngx-videogular"
}