[NestJS 에러] node @nestjs/schematics:module --name=auth --no-dry-run --no-skip-import --language="ts" --source-root="src" --spec --no-flatNode.js2023. 1. 17. 17:52
Table of Contents
$ nest g mo auth
Error: Cannot read properties of undefined (reading 'properties')
Failed to execute command: node @nestjs/schematics:module --name=auth --no-dry-run --no-skip-import --language="ts" --source-root="src" --spec --no-flat
에러 해결 방법은 2가지가 있는듯하다.
@nestjs/schematics 재설치
yarn이라면:
yarn global add @nestjs/schematics
npm이라면:
npm i -g @nestjs/schematics
다만 이 방법으로 해결되지 않았고, 다른 방법을 찾았다.
typscript 재설치
yarn이라면:
yarn global add typescript
npm이라면:
npm install -g typescript
참고 자료
'Node.js' 카테고리의 다른 글
[Jest] it vs test (0) | 2023.03.04 |
---|---|
[NestJS] Forever를 사용하여 영구적인 실행을 해봅시다. (0) | 2023.01.18 |
Reddit API로 게시글 가져오기 (3) | 2022.12.11 |
[NestJS] 쿠키와 세션이란? (0) | 2022.11.19 |
[NestJS] TypeORM 논리 삭제(soft delete)와 물리 삭제(hard delete) (0) | 2022.11.09 |
@임채성 :: 푸르고 개발 블로그
글 내용 중 잘못되거나 이해되지 않는 부분은 댓글을 달아주세요! 감사합니다! 문의: puleugo@gmail.com