본문 바로가기
라이브러리 도구

[typeorm] Entity 작성 에러

by devebucks 2023. 1. 7.
728x90

에러 해결

에러 메시지

TypeError: Class constructor BaseEntity cannot be invoked without 'new'

 

해결방법

ES5 -> ES6로 수정

{
  "compilerOptions": {
    "target": "ES6" /* ECMAScript 목표 버전 설정: 'ES3'(기본), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
    // ...
  }
}

 

 

원인

 

728x90

댓글