본문 바로가기

개발일지

[error 해결] Cannot read properties of undefined (reading 'object')

nest.js 의 새 프로젝트를 하면서 자주 겪었던 에러이다. 

import Joi from 'joi';


      validationSchema: Joi.object({

 

TypeError: Cannot read properties of undefined (reading 'object')

 

이렇게 쓰면 발생하는 에러인데, 비단 joi 뿐 아니라 undefined가 뜬다면 시도해볼만 하다.

 

import * as Joi from 'joi' 이것으로 import문을 고치던가

 

아니면 tsconfig에

 

esModuleInterop: true 이렇게 설정해 줘야한다. 프로젝트마다 설정하는 것을 잊어버려서 이렇게 글로 남긴다.