Skip to content

Commit 661012c

Browse files
committed
Update to use application builder
1 parent b43dc2b commit 661012c

File tree

12 files changed

+32
-32
lines changed

12 files changed

+32
-32
lines changed

frameworks/keyed/angular-cf-nozone/angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,20 @@
2424
"prefix": "app",
2525
"architect": {
2626
"build": {
27-
"builder": "@angular-devkit/build-angular:browser-esbuild",
27+
"builder": "@angular-devkit/build-angular:application",
2828
"options": {
29-
"outputPath": "dist/angular",
29+
"outputPath": {
30+
"base": "dist/angular"
31+
},
3032
"index": "src/index.html",
31-
"main": "src/main.ts",
3233
"polyfills": [],
3334
"tsConfig": "tsconfig.app.json",
3435
"assets": [
3536
"src/assets"
3637
],
3738
"styles": [],
38-
"scripts": []
39+
"scripts": [],
40+
"browser": "src/main.ts"
3941
},
4042
"configurations": {
4143
"production": {
@@ -54,9 +56,7 @@
5456
"outputHashing": "all"
5557
},
5658
"development": {
57-
"buildOptimizer": false,
5859
"optimization": false,
59-
"vendorChunk": true,
6060
"extractLicenses": false,
6161
"sourceMap": true,
6262
"namedChunks": true

frameworks/keyed/angular-cf-nozone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"js-framework-benchmark": {
55
"frameworkVersionFromPackage": "@angular/core",
6-
"customURL": "/dist/angular/",
6+
"customURL": "/dist/angular/browser/",
77
"frameworkHomeURL": "https://angular.io/"
88
},
99
"scripts": {

frameworks/keyed/angular-cf-nozone/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"baseUrl": "./",
66
"outDir": "./dist/out-tsc",
77
"forceConsistentCasingInFileNames": true,
8+
"esModuleInterop": true,
89
"strict": true,
910
"noImplicitOverride": true,
1011
"noPropertyAccessFromIndexSignature": true,
1112
"noImplicitReturns": true,
1213
"noFallthroughCasesInSwitch": true,
1314
"sourceMap": true,
1415
"declaration": false,
15-
"downlevelIteration": true,
1616
"experimentalDecorators": true,
1717
"moduleResolution": "node",
1818
"importHelpers": true,

frameworks/keyed/angular-cf-signals/angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@
2424
"prefix": "app",
2525
"architect": {
2626
"build": {
27-
"builder": "@angular-devkit/build-angular:browser-esbuild",
27+
"builder": "@angular-devkit/build-angular:application",
2828
"options": {
29-
"outputPath": "dist/angular",
29+
"outputPath": {
30+
"base": "dist/angular"
31+
},
3032
"index": "src/index.html",
31-
"main": "src/main.ts",
3233
"polyfills": [
3334
"zone.js"
3435
],
@@ -37,7 +38,8 @@
3738
"src/assets"
3839
],
3940
"styles": [],
40-
"scripts": []
41+
"scripts": [],
42+
"browser": "src/main.ts"
4143
},
4244
"configurations": {
4345
"production": {
@@ -56,9 +58,7 @@
5658
"outputHashing": "all"
5759
},
5860
"development": {
59-
"buildOptimizer": false,
6061
"optimization": false,
61-
"vendorChunk": true,
6262
"extractLicenses": false,
6363
"sourceMap": true,
6464
"namedChunks": true

frameworks/keyed/angular-cf-signals/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"js-framework-benchmark": {
55
"frameworkVersionFromPackage": "@angular/core",
6-
"customURL": "/dist/angular/",
6+
"customURL": "/dist/angular/browser/",
77
"frameworkHomeURL": "https://angular.io/"
88
},
99
"scripts": {

frameworks/keyed/angular-cf-signals/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"baseUrl": "./",
66
"outDir": "./dist/out-tsc",
77
"forceConsistentCasingInFileNames": true,
8+
"esModuleInterop": true,
89
"strict": true,
910
"noImplicitOverride": true,
1011
"noPropertyAccessFromIndexSignature": true,
1112
"noImplicitReturns": true,
1213
"noFallthroughCasesInSwitch": true,
1314
"sourceMap": true,
1415
"declaration": false,
15-
"downlevelIteration": true,
1616
"experimentalDecorators": true,
1717
"moduleResolution": "node",
1818
"importHelpers": true,

frameworks/keyed/angular-cf/angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@
2424
"prefix": "app",
2525
"architect": {
2626
"build": {
27-
"builder": "@angular-devkit/build-angular:browser-esbuild",
27+
"builder": "@angular-devkit/build-angular:application",
2828
"options": {
29-
"outputPath": "dist/angular",
29+
"outputPath": {
30+
"base": "dist/angular"
31+
},
3032
"index": "src/index.html",
31-
"main": "src/main.ts",
3233
"polyfills": [
3334
"zone.js"
3435
],
@@ -37,7 +38,8 @@
3738
"src/assets"
3839
],
3940
"styles": [],
40-
"scripts": []
41+
"scripts": [],
42+
"browser": "src/main.ts"
4143
},
4244
"configurations": {
4345
"production": {
@@ -56,9 +58,7 @@
5658
"outputHashing": "all"
5759
},
5860
"development": {
59-
"buildOptimizer": false,
6061
"optimization": false,
61-
"vendorChunk": true,
6262
"extractLicenses": false,
6363
"sourceMap": true,
6464
"namedChunks": true

frameworks/keyed/angular-cf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"js-framework-benchmark": {
55
"frameworkVersionFromPackage": "@angular/core",
6-
"customURL": "/dist/angular/",
6+
"customURL": "/dist/angular/browser/",
77
"frameworkHomeURL": "https://angular.io/"
88
},
99
"scripts": {

frameworks/keyed/angular-cf/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"baseUrl": "./",
66
"outDir": "./dist/out-tsc",
77
"forceConsistentCasingInFileNames": true,
8+
"esModuleInterop": true,
89
"strict": true,
910
"noImplicitOverride": true,
1011
"noPropertyAccessFromIndexSignature": true,
1112
"noImplicitReturns": true,
1213
"noFallthroughCasesInSwitch": true,
1314
"sourceMap": true,
1415
"declaration": false,
15-
"downlevelIteration": true,
1616
"experimentalDecorators": true,
1717
"moduleResolution": "node",
1818
"importHelpers": true,

frameworks/keyed/angular-ngfor/angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@
2424
"prefix": "app",
2525
"architect": {
2626
"build": {
27-
"builder": "@angular-devkit/build-angular:browser-esbuild",
27+
"builder": "@angular-devkit/build-angular:application",
2828
"options": {
29-
"outputPath": "dist/angular",
29+
"outputPath": {
30+
"base": "dist/angular"
31+
},
3032
"index": "src/index.html",
31-
"main": "src/main.ts",
3233
"polyfills": [
3334
"zone.js"
3435
],
@@ -37,7 +38,8 @@
3738
"src/assets"
3839
],
3940
"styles": [],
40-
"scripts": []
41+
"scripts": [],
42+
"browser": "src/main.ts"
4143
},
4244
"configurations": {
4345
"production": {
@@ -56,9 +58,7 @@
5658
"outputHashing": "all"
5759
},
5860
"development": {
59-
"buildOptimizer": false,
6061
"optimization": false,
61-
"vendorChunk": true,
6262
"extractLicenses": false,
6363
"sourceMap": true,
6464
"namedChunks": true

0 commit comments

Comments
 (0)