Skip to content

Commit

Permalink
Updated dependencies to Angular 18
Browse files Browse the repository at this point in the history
 -includes update to TypeScript 5.4
- includes update to new Angular build system
- includes update to @angular-eslint/schematics@rc-v18 (final not ready yet)
  • Loading branch information
Stefan Saring committed May 27, 2024
1 parent d485dde commit 4133b2b
Show file tree
Hide file tree
Showing 7 changed files with 5,073 additions and 3,716 deletions.
19 changes: 10 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,22 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/angular-redux-shop",
"outputPath": {
"base": "dist/angular-redux-shop"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["node_modules/bootstrap/dist/css/bootstrap-grid.min.css", "src/styles.scss"],
"scripts": []
"scripts": [],
"browser": "src/main.ts",
"stylePreprocessorOptions": {
"includePaths": ["."]
}
},
"configurations": {
"production": {
Expand All @@ -54,14 +59,10 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
"extractLicenses": true
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down
Loading

0 comments on commit 4133b2b

Please sign in to comment.