You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/src/browser/schema.json
+7-7
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@
69
69
"optimization": {
70
70
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.io/guide/workspace-config#optimization-configuration.",
71
71
"x-user-analytics": 16,
72
-
"default": false,
72
+
"default": true,
73
73
"oneOf": [
74
74
{
75
75
"type": "object",
@@ -153,11 +153,11 @@
153
153
"type": "boolean",
154
154
"description": "Build using Ahead of Time compilation.",
155
155
"x-user-analytics": 13,
156
-
"default": false
156
+
"default": true
157
157
},
158
158
"sourceMap": {
159
159
"description": "Output source maps for scripts and styles. For more information, see https://angular.io/guide/workspace-config#source-map-configuration.",
160
-
"default": true,
160
+
"default": false,
161
161
"oneOf": [
162
162
{
163
163
"type": "object",
@@ -193,7 +193,7 @@
193
193
"vendorChunk": {
194
194
"type": "boolean",
195
195
"description": "Generate a seperate bundle containing only vendor libraries. This option should only used for development.",
196
-
"default": true
196
+
"default": false
197
197
},
198
198
"commonChunk": {
199
199
"type": "boolean",
@@ -280,7 +280,7 @@
280
280
"extractLicenses": {
281
281
"type": "boolean",
282
282
"description": "Extract all licenses in a separate file.",
283
-
"default": false
283
+
"default": true
284
284
},
285
285
"showCircularDependencies": {
286
286
"type": "boolean",
@@ -291,12 +291,12 @@
291
291
"buildOptimizer": {
292
292
"type": "boolean",
293
293
"description": "Enables '@angular-devkit/build-optimizer' optimizations when using the 'aot' option.",
294
-
"default": false
294
+
"default": true
295
295
},
296
296
"namedChunks": {
297
297
"type": "boolean",
298
298
"description": "Use file name for lazy loaded chunks.",
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/src/server/schema.json
+3-3
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
"optimization": {
43
43
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking and dead-code elimination. For more information, see https://angular.io/guide/workspace-config#optimization-configuration.",
44
44
"x-user-analytics": 16,
45
-
"default": false,
45
+
"default": true,
46
46
"oneOf": [
47
47
{
48
48
"type": "object",
@@ -84,7 +84,7 @@
84
84
},
85
85
"sourceMap": {
86
86
"description": "Output source maps for scripts and styles. For more information, see https://angular.io/guide/workspace-config#source-map-configuration.",
87
-
"default": true,
87
+
"default": false,
88
88
"oneOf": [
89
89
{
90
90
"type": "object",
@@ -189,7 +189,7 @@
189
189
"namedChunks": {
190
190
"type": "boolean",
191
191
"description": "Use file name for lazy loaded chunks.",
192
-
"default": true
192
+
"default": false
193
193
},
194
194
"bundleDependencies": {
195
195
"description": "Which external dependencies to bundle into the bundle. By default, all of node_modules will be bundled.",
0 commit comments