Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 660 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 660 Bytes

ts-starter

This is a simple and minimal starter project for TypeScript with Bun.

I often build little tools to get stuff done or experiment with new ideas. This project provides a clean starting point for those kinds of quick TypeScript projects.

It comes with ESLint, Prettier, and Vitest, which are my go-to tools for linting, formatting, and testing TypeScript code.

How to use

PROJECT_NAME="my-new-ts-project"

# Clone
git clone --depth 1 [email protected]:Merott/ts-starter.git $PROJECT_NAME
cd $PROJECT_NAME
git remote remove origin
git commit --amend -m "init: cloned from github.com/Merott/ts-starter"

# Start
bun install
bun start