react-16-typescript-starter
v1.0.26
Published
A React 16 TypeScript starter template without create-react-app
Maintainers
Readme
React 16 TypeScript Starter
A React 16 TypeScript starter template without create-react-app or Vite. This package provides a minimal setup for starting a new React 16 project with TypeScript support.
Features
- React 16.14.0
- TypeScript support
- Webpack configuration
- Babel configuration
- Development server
- CSS support
- Hot reloading
Installation
npm install react-16-typescript-starterUsage
After installation, you can use this as a template for your React 16 TypeScript project.
Development
To start the development server:
npm startThis will start the development server at http://localhost:3000.
Building for Production
To build the project for production:
npm run buildThis will create a production build in the dist directory.
Project Structure
react-16-typescript-starter/
├── src/
│ ├── App.tsx
│ ├── App.css
│ ├── index.tsx
│ └── index.css
├── public/
│ └── index.html
├── package.json
├── tsconfig.json
├── webpack.config.js
└── .babelrcLicense
MIT
