neptune-back/nest-cli.json
Mathis 272d3ec50a
Add nest-cli.json configuration file
This adds a new configuration file for the Nest CLI to the project. The file specifies the schema, schematics collection, source root directory, and compiler options, including deleting the output directory before building.
2024-10-31 11:43:38 +01:00

9 lines
171 B
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true
}
}