Skip to content

Commit 1bb78e1

Browse files
committed
feat: angular 16
1 parent c1ff026 commit 1bb78e1

29 files changed

+13716
-5173
lines changed

frameworks/keyed/angular-nozone/angular.json

Lines changed: 36 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,17 @@
88
"projects": {
99
"angular": {
1010
"projectType": "application",
11-
"schematics": {},
11+
"schematics": {
12+
"@schematics/angular:component": {
13+
"standalone": true
14+
},
15+
"@schematics/angular:directive": {
16+
"standalone": true
17+
},
18+
"@schematics/angular:pipe": {
19+
"standalone": true
20+
}
21+
},
1222
"root": "",
1323
"sourceRoot": "src",
1424
"prefix": "app",
@@ -19,51 +29,52 @@
1929
"outputPath": "dist/angular",
2030
"index": "src/index.html",
2131
"main": "src/main.ts",
22-
"polyfills": "src/polyfills.ts",
32+
"polyfills": [],
2333
"tsConfig": "tsconfig.app.json",
24-
"aot": false,
2534
"assets": [
26-
{ "glob": "**/*", "input": "src/css/", "output": "/css/" }
27-
],
28-
"styles": [
35+
"src/assets"
2936
],
37+
"styles": [],
3038
"scripts": []
3139
},
3240
"configurations": {
3341
"production": {
34-
"optimization": true,
35-
"outputHashing": "all",
36-
"sourceMap": false,
37-
"namedChunks": false,
38-
"aot": true,
39-
"extractLicenses": true,
40-
"vendorChunk": false,
41-
"buildOptimizer": true,
4242
"budgets": [
4343
{
4444
"type": "initial",
45-
"maximumWarning": "2mb",
46-
"maximumError": "5mb"
45+
"maximumWarning": "500kb",
46+
"maximumError": "1mb"
4747
},
4848
{
4949
"type": "anyComponentStyle",
50-
"maximumWarning": "6kb",
51-
"maximumError": "10kb"
50+
"maximumWarning": "2kb",
51+
"maximumError": "4kb"
5252
}
53-
]
53+
],
54+
"outputHashing": "all"
55+
},
56+
"development": {
57+
"buildOptimizer": false,
58+
"optimization": false,
59+
"vendorChunk": true,
60+
"extractLicenses": false,
61+
"sourceMap": true,
62+
"namedChunks": true
5463
}
55-
}
64+
},
65+
"defaultConfiguration": "production"
5666
},
5767
"serve": {
5868
"builder": "@angular-devkit/build-angular:dev-server",
59-
"options": {
60-
"browserTarget": "angular:build"
61-
},
6269
"configurations": {
6370
"production": {
6471
"browserTarget": "angular:build:production"
72+
},
73+
"development": {
74+
"browserTarget": "angular:build:development"
6575
}
66-
}
76+
},
77+
"defaultConfiguration": "development"
6778
},
6879
"extract-i18n": {
6980
"builder": "@angular-devkit/build-angular:extract-i18n",
@@ -74,4 +85,4 @@
7485
}
7586
}
7687
}
77-
}
88+
}

0 commit comments

Comments
 (0)