-
Hi! Thanks for a great project! We are in the process of migrating build system to Bazel, but I'm facing some problems regarding local typescript dependencies in combination with I'll describe the setup: ts_project(
name = "cli",
srcs = glob(["src/**/*.ts"]),
tsconfig = ":tsconfig",
args = [
'--downlevelIteration'
],
declaration = True,
link_workspace_root = True,
deps = [
"//libs/auth",
"//libs/compiler",
"@cli_deps//@google-cloud/bigquery",
"@cli_deps//@types/node",
"etc"
],
)
nodejs_binary(
name = "evl",
data = [
":cli",
],
entry_point = ":src/index.ts", The
Any advice for making sense of this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
When removing I have also tried swapping |
Beta Was this translation helpful? Give feedback.
-
Thanks to @duarten , this was resolved by adding ( see #3067 (comment) ) |
Beta Was this translation helpful? Give feedback.
Thanks to @duarten , this was resolved by adding
exports_directories_only = False
in the calls tonpm_install
🎊( see #3067 (comment) )