Skip to content

Commit

Permalink
Update dependencies to angular 17
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel committed Jul 10, 2024
1 parent 4867fad commit e9b6412
Show file tree
Hide file tree
Showing 4 changed files with 4,060 additions and 3,514 deletions.
7 changes: 5 additions & 2 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ module.exports = {
'@typescript-eslint/adjacent-overload-signatures': ['error'],
'@typescript-eslint/ban-types': ['error'],
'@typescript-eslint/explicit-member-accessibility': ['error'],
'@typescript-eslint/explicit-function-return-type': ['error'],

'jsdoc/require-example': ['off'],
'jsdoc/newline-after-description': ['off'],
Expand All @@ -77,10 +76,14 @@ module.exports = {
'rxjs/no-async-subscribe': ['off'],

// Should be switched to error ordered by priority
'@typescript-eslint/explicit-function-return-type': ['warn'],
'@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
6 changes: 3 additions & 3 deletions client/angular.json
Original file line number Diff line number Diff line change
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 e9b6412

Please sign in to comment.