Skip to content

peterthehan/typescript-bootstrap

Repository files navigation

TypeScript Bootstrap

An opinionated TypeScript bootstrap template.

Getting started

  1. Run the following commands to bootstrap a TypeScript project in your working directory:

    Replace my-typescript-project in the commands below with your own preferred project name!

    npx degit peterthehan/typescript-bootstrap my-typescript-project
    
    cd my-typescript-project/
    
    npm i
    
  2. You can run the following commands to verify your setup:

    npm run lint && npm run build && npm test
    

    View package.json for more information.

You're ready to create your own TypeScript project! 🎉

Reasoning

The following resources detail how the configurations in this typescript-bootstrap template were determined:

Configs

Actions