-
Notifications
You must be signed in to change notification settings - Fork 6
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
[wip] feat: typescript plugin #86
base: main
Are you sure you want to change the base?
Conversation
|
Codecov Report
@@ Coverage Diff @@
## main #86 +/- ##
=======================================
Coverage 97.00% 97.00%
=======================================
Files 6 6
Lines 100 100
Branches 26 26
=======================================
Hits 97 97
Misses 3 3
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
); */ | ||
} | ||
|
||
return ts.visitEachChild(node, visitor, ctx); |
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 for self: this seems like it doesn't actually visit each child of the node
https://www.npmjs.com/package/ts-patch
https://github.com/madou/typescript-transformer-handbook#writing-your-first-transformer
https://github.com/cevek/ttypescript
https://github.com/marionebl/ts-transformer-testing-library/blob/0895055c00e12250fb13a2bca91f028b5bc0cb78/src/transform-file.ts#L120
https://github.com/dsherret/ts-morph/blob/a7072fcf6f9babb784b40f0326c80dea4563a4aa/docs/emitting.md#L84