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

https://github.com/nicksp/typescript-babel-template

A starter template using Babel CLI to build TypeScript code
https://github.com/nicksp/typescript-babel-template

babel-cli typecheck typescript

Last synced: 21 days ago
JSON representation

A starter template using Babel CLI to build TypeScript code

Awesome Lists containing this project

README

          

# TypeScript-Babel

> A starter template for projects using Babel CLI to build TypeScript code, and using TypeScript for type-checking.

## Building the Repo

```sh
npm run build
```

## Linting the Project

```sh
npm run lint
```

## Type-checking the Project

```sh
npm run typecheck
```

And to run in `--watch` mode:

```sh
npm run typecheck:watch
```