-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular.json
More file actions
139 lines (139 loc) · 4.13 KB
/
angular.json
File metadata and controls
139 lines (139 loc) · 4.13 KB
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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-svg-graphics": {
"projectType": "library",
"root": "projects/svg-graphics",
"sourceRoot": "projects/svg-graphics/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/svg-graphics/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/svg-graphics/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/svg-graphics/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/svg-graphics/tsconfig.spec.json",
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
},
"EMFular": {
"projectType": "library",
"root": "projects/emfular",
"sourceRoot": "projects/emfular/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/emfular/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/emfular/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/emfular/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/emfular/tsconfig.spec.json",
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
},
"ngx-emfular-helper": {
"projectType": "library",
"root": "projects/ngx-emfular-helper",
"sourceRoot": "projects/ngx-emfular-helper/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/ngx-emfular-helper/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ngx-emfular-helper/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/ngx-emfular-helper/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/ngx-emfular-helper/tsconfig.spec.json",
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
},
"ngx-emfular-integration": {
"projectType": "library",
"root": "projects/ngx-emfular-integration",
"sourceRoot": "projects/ngx-emfular-integration/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/ngx-emfular-integration/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ngx-emfular-integration/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/ngx-emfular-integration/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "projects/ngx-emfular-integration/tsconfig.spec.json",
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
}
}
}