npm i -g @nestjs/cli : 전역으로 설치. 한번 설치하면 다른 프로젝트엔 안해도 되는듯
nest new sparta-nest : 프로젝트 생성
npm i class-validator class-transformer : 유효성 검사
npm i cookie-parser
npm i @nestjs/mapped-types
npm i lodash // 유용한 유틸 라이브러리
npm i @nestjs/config : configService파일을 만들 경우 설치
$ npm i lodash
"esModuleInterop": true
추가 ES6 모듈 사양을 준수하여 CommonJS 모듈을 가져올 수 있게 합니다.␍
eslint (prettier/prettier) 에러가 날 경우 rules: {
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
},
.eslintrc.js파일에 이렇게 추가해준다.