aboutsummaryrefslogtreecommitdiffstats
path: root/build/conf/ts/ts_library.conf
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-06-13 11:05:01 +0300
committeralexv-smirnov <alex@ydb.tech>2023-06-13 11:05:01 +0300
commitbf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch)
tree1d1df72c0541a59a81439842f46d95396d3e7189 /build/conf/ts/ts_library.conf
parent8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff)
downloadydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz
add ymake export to ydb
Diffstat (limited to 'build/conf/ts/ts_library.conf')
-rw-r--r--build/conf/ts/ts_library.conf45
1 files changed, 45 insertions, 0 deletions
diff --git a/build/conf/ts/ts_library.conf b/build/conf/ts/ts_library.conf
new file mode 100644
index 0000000000..10f19f06a2
--- /dev/null
+++ b/build/conf/ts/ts_library.conf
@@ -0,0 +1,45 @@
+# TYPESCRIPT_ROOT is redefined in /build/plugins/nots.py _set_resource_vars()
+TYPESCRIPT_ROOT=
+TS_CONFIG_PATH=tsconfig.json
+TS_COMPILE=$TOUCH_UNIT \
+ && ${cwd:BINDIR} $NOTS_TOOL compile-ts $NOTS_TOOL_BASE_ARGS --tsc-resource $TYPESCRIPT_ROOT \
+ --ts-config ${input:TS_CONFIG_PATH} --node-modules-bundle $NOTS_TOOL_NODE_MODULES_BUNDLE \
+ $NODE_MODULES_BUNDLE_AS_OUTPUT ${hide:PEERS} ${input;hide:"./package.json"} ${TS_CONFIG_FILES} \
+ ${output;hide:"package.json"} ${output;hide:TS_COMPILE_OUTPUT} ${kv;hide:"p TSC"} ${kv;hide:"pc magenta"}
+
+### @usage: TS_LIBRARY([name])
+###
+### The TypeScript/JavaScript library module, compiles TypeScript sources to JavaScript.
+### Build results are JavaScript files, typings and source mappings (depending on local tsconfig.json settings).
+###
+### @example
+###
+### TS_LIBRARY()
+### SRCS(src/index.ts)
+### END()
+###
+multimodule TS_LIBRARY {
+ module BUILD: _TS_BASE_UNIT {
+ .CMD=TS_COMPILE
+ .PEERDIRSELF=NODE_MODULES
+ # epilogue is not inherited from TS_LIBRARY
+ .EPILOGUE=_TS_CONFIG_EPILOGUE
+
+ # by default multimodule overrides inherited MODULE_TAG to submodule name (BUILD in this case)
+ # but we have to set it to TS for include processor to work
+ SET(MODULE_TAG TS)
+
+ SET_APPEND(_MAKEFILE_INCLUDE_LIKE_DEPS ${CURDIR}/${TS_CONFIG_PATH} ${CURDIR}/package.json)
+
+ SET(TS_CONFIG_DEDUCE_OUT yes)
+
+ # we should set NODE_MODULES_BUNDLE_AS_OUTPUT conditionally,
+ # based on whether module has deps or doesn't have
+ _SET_NODE_MODULES_BUNDLE_AS_OUTPUT()
+
+ _TS_CONFIGURE($TS_CONFIG_PATH)
+ }
+
+ module NODE_MODULES: _NODE_MODULES_BASE {
+ }
+}