CRA없이 React Typescript 환경세팅하기 [1]
1. React 패키지 및 Typescript 설치 npm init -y yarn add react react-dom @types/react @types/react-dom yarn add typescript { "name": "kong", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "@types/react": "^18.0.15", "@types/react-dom": "^18.0.6", "react": "..
2022. 7. 18.