Allow bazel-bin to be accessed within bazel build sandbox

This commit is contained in:
Mustafa Gezen 2023-08-25 18:41:40 +02:00
parent d20f5b967e
commit 21dac7a02a

View File

@ -0,0 +1,8 @@
export default {
alias: {
// We're adding the bazel-bin alias, so we can use generated files with
// that prefix to make Node tooling happy for IDEs/linters/etc. but
// also making it "just work" for Bazel.
'bazel-bin': '.',
}
}