Я работаю над проектом REST API Nestjs, где я должен добавить сваггер.Я использовал этот репозиторий в качестве примера: https://github.com/nestjs/nest/tree/master/sample/11-swagger
, но я получаю эту ошибку: UnhandledPromiseRejectionWarning: TypeError: Cannot destructure property 'prototype' of 'undefined' or 'null' и этот: UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block or by rejecting a promise which was not handled with .catch(). проект находится здесь: https://github.com/strdr4605/nestjs-rest-api/blob/swagger/src/main.ts
UnhandledPromiseRejectionWarning: TypeError: Cannot destructure property 'prototype' of 'undefined' or 'null'
UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block or by rejecting a promise which was not handled with .catch().
Конфиг чванства был в порядке.Не уверен, но, возможно, потому, что я использовал ObjectID как тип идентификатора в методах PUT / DELETE в контроллере и сервисах.Изменен на строковый тип и все работает.