We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Forgive my poor issue title because I don't know the exact issue, but I've got a perfect minimal repro for you https://github.com/kwojcik/ts-migrate-bug.
The generated code has extra })'s and breaks.
})
The text was updated successfully, but these errors were encountered:
diff --git a/src/Property.js b/src/Property.js index 7aba662..12cf253 100644 --- a/src/Property.js +++ b/src/Property.js @@ -7,8 +7,9 @@ export default class Property { overview() { return flatten(this.foos.map(foo => Object.entries(groupBy(foo.foo, 'bar')).map(() => { + const { fooType } = foo; return { - name: `${foo.fooType}`, + name: `${fooType}`, }; }) ));
this change to the src fixes it
Sorry, something went wrong.
I met the same issue
No branches or pull requests
Forgive my poor issue title because I don't know the exact issue, but I've got a perfect minimal repro for you https://github.com/kwojcik/ts-migrate-bug.
The generated code has extra
})
's and breaks.The text was updated successfully, but these errors were encountered: