diff options
author | iniklyaev <iniklyaev@yandex-team.com> | 2024-11-18 09:20:42 +0300 |
---|---|---|
committer | iniklyaev <iniklyaev@yandex-team.com> | 2024-11-18 09:33:24 +0300 |
commit | 5111ad584756ce8d369dee46319b232b0b6abce2 (patch) | |
tree | 23bb9251940f17eff673745aa9a283511e666467 /build/conf/ts | |
parent | 0868f381344a3ff1c5ad6e1ec566960ac51e301b (diff) | |
download | ydb-5111ad584756ce8d369dee46319b232b0b6abce2.tar.gz |
PROTO_SCHEMA() module
commit_hash:3c9b927dbb3ddefcaa455eccb51ae1ded847c736
Diffstat (limited to 'build/conf/ts')
-rw-r--r-- | build/conf/ts/ts.conf | 2 | ||||
-rw-r--r-- | build/conf/ts/ts_test.conf | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/build/conf/ts/ts.conf b/build/conf/ts/ts.conf index 0fb8cba30d..f3149b3d3c 100644 --- a/build/conf/ts/ts.conf +++ b/build/conf/ts/ts.conf @@ -94,7 +94,7 @@ module _TS_BASE_UNIT: _BARE_UNIT { SET(MODULE_TAG TS) SET(MODULE_LANG TS) # TS should peer to TS - SET(PEERDIR_TAGS TS TS_PROTO) + SET(PEERDIR_TAGS TS TS_PROTO TS_PROTO_FROM_SCHEMA) # .fake tells builder to not materialize it in results SET(MODULE_SUFFIX .ts.fake) diff --git a/build/conf/ts/ts_test.conf b/build/conf/ts/ts_test.conf index be683c6ff1..c468139336 100644 --- a/build/conf/ts/ts_test.conf +++ b/build/conf/ts/ts_test.conf @@ -32,7 +32,7 @@ module TS_TEST_JEST_FOR: _TS_TEST_BASE { .CMD=TS_TEST_JEST_CMD # for multimodule peers we should choose NODE_MODULES - SET(PEERDIR_TAGS TS TS_PROTO) + SET(PEERDIR_TAGS TS TS_PROTO TS_PROTO_FROM_SCHEMA) # compatibility with old TS_TEST_SRCS SET(TS_TEST_EXTENSION test.(ts|tsx|js|jsx)) @@ -67,7 +67,7 @@ module TS_TEST_HERMIONE_FOR: _TS_TEST_BASE { .CMD=TS_TEST_HERMIONE_CMD # for multimodule peers we should choose TS - SET(PEERDIR_TAGS TS TS_PROTO) + SET(PEERDIR_TAGS TS TS_PROTO TS_PROTO_FROM_SCHEMA) # compatibility with old TS_TEST_SRCS SET(TS_TEST_EXTENSION hermione.(ts|js)) @@ -101,7 +101,7 @@ module TS_TEST_PLAYWRIGHT_FOR: _TS_TEST_BASE { .CMD=TS_TEST_PLAYWRIGHT_CMD # for multimodule peers we should choose TS - SET(PEERDIR_TAGS TS TS_PROTO) + SET(PEERDIR_TAGS TS TS_PROTO TS_PROTO_FROM_SCHEMA) # compatibility with old TS_TEST_SRCS SET(TS_TEST_EXTENSION (playwright|spec).(ts|js)) @@ -134,7 +134,7 @@ module TS_TEST_PLAYWRIGHT_LARGE_FOR: _TS_TEST_BASE { .CMD=TS_TEST_PLAYWRIGHT_LARGE_CMD # for multimodule peers we should choose TS - SET(PEERDIR_TAGS TS TS_PROTO) + SET(PEERDIR_TAGS TS TS_PROTO TS_PROTO_FROM_SCHEMA) # compatibility with old TS_TEST_SRCS SET(TS_TEST_EXTENSION (playwright|spec).(ts|js)) |