https://github.com/ryanmcdermott/bazel-ts-template
TypeScript starter template for the Bazel build system
https://github.com/ryanmcdermott/bazel-ts-template
Last synced: 5 months ago
JSON representation
TypeScript starter template for the Bazel build system
- Host: GitHub
- URL: https://github.com/ryanmcdermott/bazel-ts-template
- Owner: ryanmcdermott
- License: mit
- Created: 2022-12-29T21:38:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-20T03:24:58.000Z (almost 3 years ago)
- Last Synced: 2024-10-21T21:08:00.857Z (over 1 year ago)
- Language: Starlark
- Size: 3.53 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bazel-ts-template
This is a template for a TypeScript project using Bazel.
## Installation
First, ensure that you have [installed Bazel](https://bazel.build/install). Then run the following:
```
git clone https://github.com/ryanmcdermott/bazel-ts-template
```
## Running
### Main
```
bazel run //src/app:main_bin
```
### Tests
```
bazel test //src/app:adder_test
```