Hello World...

Nest.js dayjs 사용 본문

카테고리 없음

Nest.js dayjs 사용

FaustK 2023. 10. 10. 13:40
import dayjs from "dayjs";
import utc from 'dayjs/plugin/utc';

dayjs.extend(utc);

위와 같이 작성했을 때 에러가 발생했다. 구글링 해보니 tsconfig "esModuleInterop": true 를 추가해줘야 했다.

 

tsconfig.json

...
"esModuleInterop": true
...

 

 

https://github.com/iamkun/dayjs/issues/1367#issuecomment-779394889

Comments