Typescript - React 환경 설정하기

김아현·2022년 10월 8일
0

React-web

목록 보기
4/9

프로젝트 환경설정

  1. npx create-react-app --typescript
  2. npm install --save @types/styled-components
  3. npm i @types/styled-components
  4. npm install recoil
  5. npx tsc --init
  6. npm i react-beautiful-dnd
// tsconfig.json
// tsc --init으로 생성한 tsconfig.json의 내용을 수정한다.
{
  "compilerOptions": {
    "jsx": "react-jsx",
    "moduleResolution": "node",
    "module": "commonjs",
    "target": "es5",
    "lib": ["es2015", "es6", "esnext", "dom"],
    "allowJs": true,
    "sourceMap": true,
    "baseUrl": ".",
    "outDir": "dist",
    "paths": {
      "@/*": ["src/*"]
    },
    "allowSyntheticDefaultImports": true,
    "keyofStringsOnly": true
  },
  "include": ["./src/**/*"],
  "exclude": ["./node_modules/**/*"]
}
profile
멘티를 넘어 멘토가 되는 그날까지 파이팅

0개의 댓글