Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 682 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 682 Bytes

react-ts-boilerplate

Simple React + TypeScript + Webpack + Babel configuration to quickly get started on full projects.

Features

  • Webpack configured out-of-the-box for all main use cases with no restrictions on extension
  • Babel to transpile TypeScript for use with the Webpack dev server for hot reload support
  • ESLint + Prettier + Husky + Lint-Staged setup for git workflows that ensure consistent styling

Getting Started

Beginning at the directory that you want to add your new project under:

git clone https://github.com/MoSheikh/react-ts-boilerplate.git <new_project>
cd <new_project>
npm i

Start the dev server using:

npm run dev