Files

20 lines
480 B
JSON

{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"plugins": [
{
"name": "@nestjs/swagger" ,
"options": {
"dtoFileNameSuffix": [".entity.ts", ".dto.ts"],
"controllerFileNameSuffix": [".controller.ts"],
"classValidatorShim": true,
"introspectComments": true,
"dtoKeyOfComment": true,
"controllerKeyOfComment": "description"
}
}
]
}
}