-
Notifications
You must be signed in to change notification settings - Fork 710
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
Re-export TypeScript namespaces (or at least ones with enums) #1213
Closed
1 task done
KSXGitHub opened this issue
Feb 21, 2020
· 2 comments
· Fixed by #1217, dbartholomae/redux-dynamic-modules-beacon#25 or gpicron/ssb-subjective-group#1
Closed
1 task done
Re-export TypeScript namespaces (or at least ones with enums) #1213
KSXGitHub opened this issue
Feb 21, 2020
· 2 comments
· Fixed by #1217, dbartholomae/redux-dynamic-modules-beacon#25 or gpicron/ssb-subjective-group#1
Comments
In 0.17 this will be fixed by TypeScript moving to a peer dependency - #1184. It seems reasonable to re-export the ts namespace until 0.17 is ready, PR welcome. |
KSXGitHub
added a commit
to KSXGitHub/typedoc
that referenced
this issue
Feb 23, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
Application#bootstrap
requires some enum options. I cannot provide them unless I have access to TypeScript enum objects.Why is this a problem?
I could have added TypeScript version that TypeDoc uses to my dependency list, but that means that:
Suggested Solution
Either:
export * as ts from 'typescript'
export { ScriptTarget, ModuleKind } from 'typescript'
The text was updated successfully, but these errors were encountered: