You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the ts_project(srcs) is passed files that do not belong to the current BUILD odd errors occur.
passing .ts from parent/sibling packages:
Previous, before 85d969e, tsc would output an error saying the .ts is outside the rootDor.
After 85d969ewrite_tsconfig computes the wrong path and tsc outputs an error saying the file doesn't exist instead.
passing .ts from subpackages
GUESS: tsc will not complain about the inputs but will most likely fail to write the outputs.
passing .d.ts from parent/sibling packages:
Previously: may have passed depending if the dts is already in the bindir (so no copy action is created)
Now: probably fails because the path is computed wrong
What happened?
When the
ts_project(srcs)
is passed files that do not belong to the current BUILD odd errors occur..ts
from parent/sibling packages:Previous, before 85d969e, tsc would output an error saying the .ts is outside the
rootDor
.After 85d969e
write_tsconfig
computes the wrong path and tsc outputs an error saying the file doesn't exist instead..ts
from subpackagesGUESS: tsc will not complain about the inputs but will most likely fail to write the outputs.
.d.ts
from parent/sibling packages:Previously: may have passed depending if the dts is already in the bindir (so no copy action is created)
Now: probably fails because the path is computed wrong
Version
All, the error changed after 85d969e
How to reproduce
jbedard@ebb4759
The text was updated successfully, but these errors were encountered: