An open API service indexing awesome lists of open source software.

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

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
```