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

https://github.com/xcodebuild/ts-zero

Starter project for create Typescript library with zero-configuration build/watch/test/lint
https://github.com/xcodebuild/ts-zero

Last synced: 9 months ago
JSON representation

Starter project for create Typescript library with zero-configuration build/watch/test/lint

Awesome Lists containing this project

README

          

## ts-zero

ts-zero is a tiny starter project for create Typescript library with zero-configuration build/watch/test/lint.

- Build and watch with [microbundle](https://github.com/developit/microbundle)
- Test with jest and [ts-jest](https://www.npmjs.com/package/ts-jest)
- Lint with [xo](https://github.com/xojs/xo)

## Usage

```shell
git clone https://github.com/xcodebuild/ts-zero your-project
cd your-project
npm install
# watch
npm run start

# build
npm run build

# test
npm run test

# lint
npm run lint
```