Skip to content

Commit

Permalink
[Angular] Upgrade typescript-eslint from 8.11.0 to 8.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Oct 29, 2024
1 parent a65eead commit 30770dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion generators/angular/resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"rimraf": "5.0.8",
"ts-jest": "29.2.5",
"typescript": "5.5.4",
"typescript-eslint": "8.11.0",
"typescript-eslint": "8.12.1",
"webpack": "5.95.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-merge": "6.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ export type HealthKey =

export interface Health {
status: HealthStatus;
components: {
[key in HealthKey]?: HealthDetails;
};
components: Record<HealthKey, HealthDetails>;
}

export interface HealthDetails {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,7 @@ export interface GarbageCollector {

export type Services = Record<
string,
{
[key in HttpMethod]?: MaxMeanCount;
}
Record<HttpMethod, MaxMeanCount>
>;

export enum HttpMethod {
Expand Down

0 comments on commit 30770dd

Please sign in to comment.