-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular.json
More file actions
111 lines (111 loc) · 3.55 KB
/
angular.json
File metadata and controls
111 lines (111 loc) · 3.55 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"uoa-controls": {
"projectType": "library",
"root": "projects/uoa-controls",
"sourceRoot": "projects/uoa-controls/src",
"prefix": "uoa",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/uoa-controls/tsconfig.lib.json",
"project": "projects/uoa-controls/ng-package.json"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/uoa-controls/src/test.ts",
"tsConfig": "projects/uoa-controls/tsconfig.spec.json",
"karmaConfig": "projects/uoa-controls/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["projects/uoa-controls/tsconfig.lib.json", "projects/uoa-controls/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
},
"auth": {
"projectType": "library",
"root": "projects/auth",
"sourceRoot": "projects/auth/src",
"prefix": "uoa",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/auth/tsconfig.lib.json",
"project": "projects/auth/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/auth/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/auth/src/test.ts",
"tsConfig": "projects/auth/tsconfig.spec.json",
"karmaConfig": "projects/auth/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["projects/auth/tsconfig.lib.json", "projects/auth/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
},
"error-pages": {
"projectType": "library",
"root": "projects/error-pages",
"sourceRoot": "projects/error-pages/src",
"prefix": "uoa",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/error-pages/tsconfig.lib.json",
"project": "projects/error-pages/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/error-pages/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/error-pages/src/test.ts",
"tsConfig": "projects/error-pages/tsconfig.spec.json",
"karmaConfig": "projects/error-pages/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["projects/error-pages/tsconfig.lib.json", "projects/error-pages/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
}
},
"defaultProject": "uoa-controls",
"cli": {
"analytics": "836becf4-0266-4a0f-9eac-d4f87694eb7a"
}
}