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
- Host: GitHub
- URL: https://github.com/xcodebuild/ts-zero
- Owner: xcodebuild
- License: mit
- Created: 2021-11-07T13:06:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-10T07:46:36.000Z (about 4 years ago)
- Last Synced: 2025-01-28T02:33:19.848Z (11 months ago)
- Language: JavaScript
- Size: 88.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```