1. create-react-app

npx create-react-app [directory name] --template typescript
npm uninstall -g create-react-app 이후 다시 설치해본다.
npm run start

2. babel-loader 호환성 해결

SKIP_PREFLIGHT_CHECK=true

3. storybook

yarn add --dev @storybook/react
  "scripts": {
    "story": "start-storybook -p 9001 -c .storybook",
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },