'tsc'를 실행할 때이 오류를 표시하는 프로젝트가 있습니다.
../modules/node_modules/sequelize/types/lib/transaction.d.ts:33:14 - error TS1086: An accessor cannot be declared in an ambient context.
33 static get LOCK(): LOCK;
~~~~
../modules/node_modules/sequelize/types/lib/transaction.d.ts:40:7 - error TS1086: An accessor cannot be declared in an ambient context.
40 get LOCK(): LOCK;
~~~~
내 버전은 다음과 같습니다
- "@ types / sequelize": "^ 4.28.6"
- "sequelize": "^ 5.8.10"
- "sequelize-typescript": "1.0.0-beta.4"
프로젝트는 nodemon과 잘 작동하지만 typescript를 컴파일하려고하면 실패합니다. 누구나이 오류를 알고 있습니까?
감사.