nestapp/nest-cli.json
2025-06-21 19:40:04 +08:00

24 lines
474 B
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"assets": [
"assets/**/*"
],
"watchAssets": true,
"deleteOutDir": true,
"builder": "swc",
"typeCheck": true,
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"introspectComments": true,
"controllerKeyOfComment": "summary"
}
}
]
}
}