React WebMail - BackEnd(2) API 초기 설정


React WebMail - BackEnd(2) API 초기 설정

1. TypeScript와 Express 다운로드 진행중인 프로젝트에서 다음과 같은 명령어를 입력한다. > npm install typescript express @types/express @types/node ts-node 2. tsconfig.json 생성 tsconfig.json 파일을 생성하고, 다음과 같이 입력한 후 저장한다. { "compilerOptions": { "target": "es6", "lib": [ "dom", "dom.iterable", "esnext" ], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "module": "commonjs", "moduleRe...



원문링크 : React WebMail - BackEnd(2) API 초기 설정