bazeltsc
bazeltsc copied to clipboard
TypeScript compiler that knows how to run as a Bazel "persistent worker"
[This repo](https://github.com/sconover/bazeltsc-with-tsconfig-paths) reproduces the problem. Whereas tsc will compile a file with a dependency across a path alias that is a ts declaration file, bazeltsc will not do this. Context:...
Is there a way to provide a local tsconfig.json to the rule?
Unlike `ts_library`, `tsc` has no 'deps' attribute, so a typescript project can't be broken up into separate modules that depend on each other. Is it possible to combine multiple uses...