본문 바로가기

FE3

[Ubuntu] 타입 스크립트 시작하기 우분투에서 Visual Studio Code 설치https://code.visualstudio.com/ Visual Studio Code - Code Editing. RedefinedVisual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.code.visualstudio.com비쥬얼 스튜디오 공식 홈페이지에서 데비안 파일 (.deb)를 다운로드를 받아 줍니다.cd ./다운로드 .. 2024. 7. 9.
React + TypeScript 패키지 설치 에러 라이브러리가 선언은 되었지만 해당 값이 읽히지는 않았습니다 혹은 React 빌드 후 웹페이지에서 TS2307: Cannot find module 'react-icons/go' or its corresponding type declarations. 이런식으로 에러가 나는 경우 타입을 선언해줘야 한다. npm install react-icons 예를들어 react-icons를 사용할 때 패키지를 설치해 주고 TypeScript의 타입 선언 파일을 명시적으로 설치해 주어야 한다. npm install @types/react-icons 2024. 7. 3.
React + Typescript 빌드 부터 실행 까지 사용 기술 스택ReactTypescriptTailwind CSSReact-QueryLuxonReact-Router-DomZustandZod node 설치하기리액트 프로젝트를 시작하기에 앞서 node를 설치합니다. 맥 환경에서 brew를 이용해 설치해 줍니다. brew install node 설치가 잘 되었는지 확인하려면 node 명령어를 사용해서 버전을 확인해 줍니다. node -vnpm -v  typescript + react 앱 생성하기npx create-react-app [프로젝트 이름] --template typescript cd (change directory) 명령어를 사용해서 해당 폴더로 이동해 줍니다.  cd [프로젝트 이름] 이동 후 아래 명령어를 사용해서 추가적으로 필요한 디펜던시를 설.. 2024. 7. 1.