Create TypeScript App

2.60.1 · active · verified Sun Apr 19

Create TypeScript App (currently version 2.60.1) is a command-line interface (CLI) tool designed to bootstrap or transition JavaScript/TypeScript repositories with an opinionated and comprehensive set of modern development tooling. It maintains an active release cadence, with frequent minor and patch updates, often on a weekly or bi-weekly basis, as evidenced by its rapid version progression. Key differentiators include its 'one-stop-shop' approach, integrating pre-configured solutions for building, testing, automated release management, contributor recognition, and GitHub repository settings. The template emphasizes a strict TypeScript setup and incorporates popular tools like pnpm, ESLint, and Vitest, aiming to provide a robust foundation while remaining highly configurable. While opinionated, it allows users to customize or remove any integrated tooling as needed.

Common errors

Warnings

Install

Quickstart

Initializes a new TypeScript project with an interactive setup wizard and common CLI options, creating a project directory and its core files without immediately installing dependencies. Users are prompted for further configuration during execution.

npx create-typescript-app --owner "YourGitHubUser" --author "Your Name" --email "your.email@example.com" --repository-description "A new TypeScript project with opinionated tooling." --package-name "my-new-ts-app" --mode setup --skip-install

view raw JSON →