Skip to content

Commit

Permalink
fix: don't limit extends on ts_project to only .json files (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored May 21, 2024
1 parent 455dcaa commit 21b41be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/private/ts_lib.bzl
Original file line number Diff line number Diff line change
@@ -114,7 +114,7 @@ COMPILER_OPTION_ATTRS = {
doc = "https://www.typescriptlang.org/tsconfig#emitDeclarationOnly",
),
"extends": attr.label(
allow_files = [".json"],
allow_files = True,
doc = "https://www.typescriptlang.org/tsconfig#extends",
),
"incremental": attr.bool(

0 comments on commit 21b41be

Please sign in to comment.