-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TR-22: Refactor rollup/percent-complete #197
base: main
Are you sure you want to change the base?
Conversation
const groupedIssueData = groupIssuesByHierarchyLevel(completionRollups); | ||
|
||
// Object.groupBy requires "target: ESNext" in tsconfig | ||
const issueKeyToChildren = Object.groupBy( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: Object.groupBy is only available in the ESNext target, so preserving the existing code as much as possible meant changing tsconfig target from ES2020 to ESNext
77198e5
to
36aa420
Compare
d65a5bc
to
39c7bee
Compare
@@ -1,6 +1,7 @@ | |||
{ | |||
"compilerOptions": { | |||
"target": "ES2020", | |||
"target": "ESNext", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
percent complete is using Object.groupBy, which is only available in ESNext
No description provided.