Hello World...
Nest.js dayjs 사용 본문
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