-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
152 lines (152 loc) · 4.56 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ng-keyboard-sort": {
"projectType": "library",
"root": "libs/ng-keyboard-sort",
"sourceRoot": "libs/ng-keyboard-sort/src",
"prefix": "kbd-sort",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "libs/ng-keyboard-sort/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/ng-keyboard-sort/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "libs/ng-keyboard-sort/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "libs/ng-keyboard-sort/tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"],
"karmaConfig": "libs/ng-keyboard-sort/karma.conf.js"
},
"configurations": {
"ci": {
"browsers": "ChromeHeadlessCI,WebkitHeadless",
"codeCoverage": true,
"progress": false,
"sourceMap": true,
"watch": false
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"libs/ng-keyboard-sort/**/*.ts",
"libs/ng-keyboard-sort/**/*.html"
]
}
}
}
},
"e2e": {
"projectType": "application",
"schematics": {},
"root": "apps/e2e",
"sourceRoot": "apps/e2e/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"outputPath": {
"base": "dist/apps/e2e"
},
"browser": "apps/e2e/src/main.ts",
"index": "apps/e2e/src/index.html",
"polyfills": ["zone.js", "@angular/localize/init"],
"tsConfig": "apps/e2e/tsconfig.app.json",
"assets": ["apps/e2e/src/favicon.ico", "apps/e2e/src/assets"],
"styles": [
"apps/e2e/src/styles.css",
"node_modules/@angular/cdk/_index.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "e2e:build:production"
},
"development": {
"buildTarget": "e2e:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular/build:extract-i18n",
"options": {
"buildTarget": "e2e:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "apps/e2e/tsconfig.spec.json",
"karmaConfig": "apps/e2e/karma.conf.js",
"styles": [
"apps/e2e/src/styles.css",
"node_modules/@angular/cdk/_index.scss"
]
},
"configurations": {
"ci": {
"browsers": "ChromeHeadlessCI,WebkitHeadless",
"codeCoverage": true,
"progress": false,
"sourceMap": true,
"watch": false
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["apps/e2e/**/*.ts", "apps/e2e/**/*.html"]
}
}
}
}
}
}