Node.js, Nest.js, TypeOrm 프로젝트 세팅

jegw·2023년 8월 8일
0

TIL

목록 보기
58/77
post-custom-banner
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파일을 만들 경우 설치
  • [lodash 설치 명령어]
    $ npm i lodash
  • tsconfig.json 속성 추가 "esModuleInterop": true 추가 ES6 모듈 사양을 준수하여 CommonJS 모듈을 가져올 수 있게 합니다.
  • Delete eslint (prettier/prettier) 에러가 날 경우
rules: {
    'prettier/prettier': [
      'error',
      {
        endOfLine: 'auto',
      },
    ],
  }, 
 

.eslintrc.js파일에 이렇게 추가해준다.

post-custom-banner

0개의 댓글