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

https://github.com/mikedevelops/typescript-starter

A starting point for TypeScript applications with TSLint & Jest.
https://github.com/mikedevelops/typescript-starter

javascript jest tslint typescript

Last synced: 3 months ago
JSON representation

A starting point for TypeScript applications with TSLint & Jest.

Awesome Lists containing this project

README

          

# TypeScript Starter

A starting point for [TypeScript](https://www.typescriptlang.org) projects including [TSLint](https://github.com/palantir/tslint) and [ts-jest](https://github.com/kulshekhar/ts-jest).

## Getting Started

Install project dependencies.

```
npm install
```

Start a local webserver and watch for changes.

```
npm run dev
```

Run test suite.

```
npm test
```

Create a production build.

```
npm run prod
```