-
Notifications
You must be signed in to change notification settings - Fork 246
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
fix(jsii): annotation '@internal' causes missing type declarations downstream #2172
Conversation
Stop setting 'stipInternal: true' in tsconfig.json files, as this makes it impossible to mark intentionally unexported types as @internal without causing downstream compilation failures due to missing type declarations.
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.
feat? Should be a 'fix', no?
I hesitated... changed it up :) |
Thank you for contributing! ❤️ I will now look into making sure the PR is up-to-date, then proceed to try and merge it! |
Merging (with squash)... |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Merging (with squash)... |
…" (#11070) This reverts commit 0537598. This change requires aws/jsii#2172 to be merged and a jsii upgrade as the usage of `@internal` for `HttpPrivateIntegration` and `VpcLinkConfigurationOptions` is causing downstream compilation failures currently. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
…1)" (#11070) This reverts commit fc74e037c5be4e364d249ab5cad6998490880afa. This change requires aws/jsii#2172 to be merged and a jsii upgrade as the usage of `@internal` for `HttpPrivateIntegration` and `VpcLinkConfigurationOptions` is causing downstream compilation failures currently. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Stop setting
stipInternal: true
intsconfig.json
files, as this makes it impossibleto mark intentionally unexported types as
@internal
without causing downstreamcompilation failures due to missing type declarations.
Fixes #1947
Related to #1830
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.