From 1750be3af18dc18f0aed9c6bf897c508cabdb3e9 Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Thu, 5 Sep 2024 14:06:51 -0700 Subject: [PATCH] remove reference to #88 in no-outputs error --- ts/private/ts_project.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/private/ts_project.bzl b/ts/private/ts_project.bzl index a5420dde..84f1e6cd 100644 --- a/ts/private/ts_project.bzl +++ b/ts/private/ts_project.bzl @@ -187,9 +187,9 @@ See https://github.com/aspect-build/rules_ts/issues/361 for more details. no_outs_msg = """ts_project target {target} only has typings in srcs. Since there is no `tsc` action to perform, there are no generated outputs. -> ts_project doesn't support "typecheck-only"; see https://github.com/aspect-build/rules_ts/issues/88 +For "typecheck-only" the TypeScript 'noEmit' feature can be used. -This should be changed to js_library, which can be done by running: +For grouping typings this should be changed to js_library, which can be done by running: buildozer 'new_load @aspect_rules_js//js:defs.bzl js_library' //{pkg}:__pkg__ buildozer 'set kind js_library' {target}