Starter kit for React and Typescript projects. Bundled with Webpack.
.
├── 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
- Start development server:
npm run dev
oryarn dev
Runs at port
9000
- Generate deploy bundle:
npm run build
oryarn build