'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をコンパイルしようとすると失敗します。誰かがこのエラーを知っていますか?
ありがとう。