21 lines
499 B
JSON
21 lines
499 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
||
|
|
"collection": "@nestjs/schematics",
|
||
|
|
"sourceRoot": "src",
|
||
|
|
"compilerOptions": {
|
||
|
|
"deleteOutDir": true,
|
||
|
|
"builder": "webpack",
|
||
|
|
"plugins": [
|
||
|
|
{
|
||
|
|
"name": "@nestjs/swagger/plugin",
|
||
|
|
"options": {
|
||
|
|
"classValidatorShim": true,
|
||
|
|
"introspectComments": true,
|
||
|
|
"dtoFileNameSuffix": [".dto.ts", ".entity.ts"],
|
||
|
|
"controllerFileNameSuffix": ".controller.ts"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|