-
Notifications
You must be signed in to change notification settings - Fork 813
feat(docs): enrich type information for docs-json Output Target #4212
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -221,7 +221,7 @@ export const createInMemoryFs = (sys: d.CompilerSystem) => { | |
const emptyDirs = async (dirs: string[]): Promise<void> => { | ||
dirs = dirs | ||
.filter(isString) | ||
.map(normalizePath) | ||
.map((s) => normalizePath(s)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Double checking, is this change needed? Doesn't what we have before do the same thing? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. EDIT: NVM - I found the change later in the review to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah I wish this could stay as a unary function here, but I think the issue here is that |
||
.reduce((dirs, dir) => { | ||
if (!dirs.includes(dir)) { | ||
dirs.push(dir); | ||
|
Uh oh!
There was an error while loading. Please reload this page.