nest-admin-main/nest-cli.json

18 lines
371 B
JSON
Raw Permalink Normal View History

2024-09-11 16:32:57 +08:00
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"assets": [
{ "include": "assets/**/*", "watchAssets": true }
],
"plugins": [{
"name": "@nestjs/swagger",
"options": {
"introspectComments": true
}
}]
}
}