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
The :foo target is a js_library(srcs=[]) so there's no point linting it. The target with srcs=["my.ts"] is the :foo_typings target that doesn't appear in the BUILD file.
So an end-user will have a hard time linting a single ts_project in this case.
Version
All versions
How to reproduce
No response
Any other information?
No response
The text was updated successfully, but these errors were encountered:
What happened?
ts_project(name = "foo", transpiler=swc)
will produce several targets, as documented: https://github.com/aspect-build/rules_ts/blob/main/docs/transpiler.md#macro-expansionThe
:foo
target is ajs_library(srcs=[])
so there's no point linting it. The target withsrcs=["my.ts"]
is the:foo_typings
target that doesn't appear in the BUILD file.So an end-user will have a hard time linting a single ts_project in this case.
Version
All versions
How to reproduce
No response
Any other information?
No response
The text was updated successfully, but these errors were encountered: