Skip to content

Commit

Permalink
Update to angular v17 (#3706)
Browse files Browse the repository at this point in the history
Includes mdc migrations for chip, button, menu, table, checkbox and list
  • Loading branch information
bastianjoel authored Jul 11, 2024
1 parent 6c66759 commit 44b7533
Show file tree
Hide file tree
Showing 241 changed files with 4,864 additions and 4,486 deletions.
5 changes: 4 additions & 1 deletion client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ module.exports = {
'@typescript-eslint/ban-ts-comment': ['warn'],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/no-non-null-assertion': ['off'],
'no-console': ['off', { allow: ['warn', 'error', 'info', 'debug'] }]
'no-console': ['off', { allow: ['warn', 'error', 'info', 'debug'] }],

// Currently used by view models
'@typescript-eslint/no-unsafe-declaration-merging': ['off']
}
},
{
Expand Down
10 changes: 5 additions & 5 deletions client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "4kb",
"maximumError": "10kb"
"maximumWarning": "10kb",
"maximumError": "50kb"
}
],
"fileReplacements": [
Expand Down Expand Up @@ -90,18 +90,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "client:build:production"
"buildTarget": "client:build:production"
},
"development": {
"browserTarget": "client:build:development"
"buildTarget": "client:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "client:build"
"buildTarget": "client:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit 44b7533

Please sign in to comment.