Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this change?
vendor
back undersrc
, with a__
prefix to keep it separate from our own codeWhy?
multiple
rootDirs
in the tsconfig meant everything was published under the directory it lives in (src, vendor etc). this broke importing.@ioanna0 and i mulled this over and decided we could either do this or change the main/module paths. that felt wrong, since it's not src at that point, it's our compiled artefact.
also, vendor code is source code of this package, just not ours.
this attempts to mark it as such while keeping a clean published artefact
we should probably add some validation for the built package before publishing it