Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 732 Bytes

readme.md

File metadata and controls

26 lines (24 loc) · 732 Bytes

React-typescript-starter

Starter kit for React and Typescript projects. Bundled with Webpack.

Project structure:

 .
├── assets
├── node_modules
├── public
|       └── index.html
├── src
|       ├── components
|       ├── containers
|       ├── App.tsx
|       ├── index.tsx
|       └── utils.ts
├── .gitignore
├── package-lock.json
├── package.json
├── readme.md
├── tsconfig.json
└── webpack.config.ts

Installation:

  • Start development server: npm run dev or yarn dev

Runs at port 9000

  • Generate deploy bundle: npm run build or yarn build