build: upgrade ng core to 18

This commit is contained in:
Johannes Millan 2024-06-15 12:59:52 +02:00
parent 019438e32b
commit 9b5b0892e3
12 changed files with 2999 additions and 1994 deletions

View file

@ -20,13 +20,16 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"aot": true,
"outputPath": "dist",
"outputPath": {
"base": "dist"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "src/tsconfig.app.json",
"preserveSymlinks": true,
"assets": [
@ -37,7 +40,13 @@
],
"styles": ["src/styles.scss"],
"scripts": [],
"webWorkerTsConfig": "src/tsconfig.worker.json"
"webWorkerTsConfig": "src/tsconfig.worker.json",
"browser": "src/main.ts",
"stylePreprocessorOptions": {
"includePaths": [
"."
]
}
},
"configurations": {
"development": {
@ -47,9 +56,7 @@
"maximumWarning": "6kb"
}
],
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": false,
@ -83,8 +90,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": false
},
"productionWeb": {
@ -113,8 +118,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": true
},
"stage": {
@ -144,8 +147,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": false
},
"stageWeb": {
@ -174,8 +175,6 @@
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": true
}
}