create-react-app-ts-webpack
Version:
It automatically builds a react, typescript and webpack working environment
40 lines (26 loc) • 886 B
Markdown
# create-react-app-ts-webpack
### 2022-11-13
- ❌ Improve errors where the node_modules folder is created
### It automatically builds a react, typescript, and webpack working environment. This package helps the following people:
- People who want a light initial project because the create-react-app CRA is heavy
- People who need a CRA with react, typescript, yarn, etc
- People who start with web pack settings for react
- People who want to start a project with airbnb convention (eslint, prettier)
- People who do not want to install additional packages when collaborating with yarn berry's zero-install
<br />
## Create-react-project
```
$ npx create-react-app-ts-webpack your-app-name
```
## Check Installation
```
$ yarn
```
## Development Environment
```
$ yarn dev
```
## Deploy Environment
```
$ yarn build
```