-
NestJS에서 yarn-berry로 생성 후 발생하던 문제Nest.js 2024. 4. 7. 21:17728x90
EsLint와 prettierrc를 적용 하면서 발생한 문제 by vscode
오류 메세지는 잃어 버렸으나 해결을 위해 설치 했던것들
$ yarn add -D typescript@~5.3.9 $ yarn add -D eslint-import-resolver-typescript $ yarn add -D eslint-plugin-import
yarn에서 npm처럼 npm_modules를 날리고 다시 install 하고 싶을때
- .yarn 폴더지우기
- yarn.lock 지우기
$ yarn install // yarn install후에 꼭 설치 해주어야 vscode가 typescript를 찾을 수 있다 $ yarn dlx @yarnpkg/sdks vscode
아무 ts 파일에 간다음에 f1번 누르고 version이라고 검색하면 아래와 같이 나온다
꼭 yarn에 있는 typescript를 선택 해주어야함. 아니면 import nest 모듈들 다 빨강이 되버림
728x90'Nest.js' 카테고리의 다른 글
cookie-option secure: true 옵션 사용시 Safari localhost에서 쿠키 저장이 안되는 문제 (0) 2024.05.23 NestJS에서 nest-cli로 실행 시킬때 src폴더 외 루트 경로 인식 못할때 (0) 2024.04.17 WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree (0) 2024.04.07 NestJS redis 라이브러리 (0) 2024.03.17 NestJS에서 에러 로그 생성 및 관리 (0) 2024.03.12