Skip to content

Commit 0b94dfc

Browse files
committed
build: ensure tsconfig is explicitly configured for ts_project targets
Currently we always use our build tsconfigs from `/src`, whenever we see a `ts_project`, or `ng_project` target. This doesn't work for targets outside of `src` and ambiguously breaks the build. This commit makes this a more obvious failure mode.
1 parent ae9678d commit 0b94dfc

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

tools/bazel/ts_project_interop.bzl

-3
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,6 @@ def ts_project(
124124
if d.endswith("_rjs"):
125125
rjs_modules_to_rnjs.append(d.replace("_rjs", ""))
126126

127-
if tsconfig == None:
128-
tsconfig = "//src:test-tsconfig" if testonly else "//src:build-tsconfig"
129-
130127
ts_deps_interop(
131128
name = "%s_interop_deps" % name,
132129
deps = [] + interop_deps + rjs_modules_to_rnjs,

tools/defaults2.bzl

+10
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,17 @@ def ts_project(
1111
name,
1212
source_map = True,
1313
testonly = False,
14+
tsconfig = None,
1415
**kwargs):
16+
if tsconfig == None and native.package_name().startswith("src"):
17+
tsconfig = "//src:test-tsconfig" if testonly else "//src:build-tsconfig"
18+
1519
_ts_project(
1620
name,
1721
source_map = source_map,
1822
module_name = compute_module_name(testonly),
1923
testonly = testonly,
24+
tsconfig = tsconfig,
2025
**kwargs
2126
)
2227

@@ -28,13 +33,18 @@ def ng_project(
2833
name,
2934
source_map = True,
3035
testonly = False,
36+
tsconfig = None,
3137
**kwargs):
38+
if tsconfig == None and native.package_name().startswith("src"):
39+
tsconfig = "//src:test-tsconfig" if testonly else "//src:build-tsconfig"
40+
3241
_ts_project(
3342
name,
3443
source_map = source_map,
3544
module_name = compute_module_name(testonly),
3645
rule_impl = _ng_project,
3746
testonly = testonly,
47+
tsconfig = tsconfig,
3848
**kwargs
3949
)
4050

0 commit comments

Comments
 (0)