starter-ts is my starter/boilerplate for typescript projects.
This template assumes you are using Linux, or the included Dev Container.
- antfu/eslint-config
- Style error silencing is commented out
play
script usesunbuild
's passive watcher (stub mode), which allows you to execute new code live without rebuilding the project. The cons is TS declarations are not available.play:useBuild
builds a static version of the package, useful for testing the actual look/behavior when shipping.
- TypeScript ready!
# npm
npm install starter-ts
# yarn
yarn add starter-ts
# pnpm (recommended)
pnpm install starter-ts
// ESM
import { hello } from 'starter-ts'
- Become the legendary 10000x developer