A general-purpose TypeScript project template for Node.js >= 25.
# Install dependencies
npm install
# Run once
npm start
# Type-check
npm run typecheck
# Build (compile to JavaScript)
npm run build
# Run tests
npm test
# Lint and format
npm run lint
npm run lint:fix
# Generate documentation
npm run doc
src/
index.ts # Library entry point
start.ts # Application entry point
launcher.ts # Application launcher
__tests__/ # Test files
dist/ # Compiled output (generated)
public/ # Documentation output (generated)