|
@@ -12,6 +12,8 @@ module _TS_BASE_UNIT: _BARE_UNIT {
|
|
|
.NODE_TYPE=Bundle
|
|
|
# Needed for DEPENDS in tests to choose right submodule from multimodule
|
|
|
.FINAL_TARGET=yes
|
|
|
+ # use TS_FILES instead of FILES
|
|
|
+ .ALIASES=FILES=TS_FILES
|
|
|
|
|
|
# .NODE_TYPE=Bundle is required for peers propagation, but it also affects
|
|
|
# how merging of pic/nopic graphs. Here we can override this merging behaviour
|
|
@@ -42,6 +44,15 @@ macro _TS_CONFIG_EPILOGUE() {
|
|
|
_SETUP_EXTRACT_NODE_MODULES_RECIPE(${MODDIR})
|
|
|
}
|
|
|
|
|
|
+_TS_FILES_COPY_CMD=
|
|
|
+
|
|
|
+### TS_FILES(Files...)
|
|
|
+###
|
|
|
+### Adds files to output as is. Similar to FILES but works for TS build modules
|
|
|
+macro TS_FILES(Files...) {
|
|
|
+ _TS_FILES($Files)
|
|
|
+}
|
|
|
+
|
|
|
@import "${CONF_ROOT}/conf/ts/node_modules.conf"
|
|
|
@import "${CONF_ROOT}/conf/ts/ts_bundle.conf"
|
|
|
@import "${CONF_ROOT}/conf/ts/ts_library.conf"
|