Remnawave_backend/nest-cli.json
kastov 0796c8ae55
refactor: restructure jobs and scheduler configuration
- Update ecosystem configuration for scheduler and jobs
- Adjust tsconfig and nest-cli paths for new module structure
2025-03-05 07:26:03 +03:00

31 lines
No EOL
707 B
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"tsConfigPath": "tsconfig.json"
},
"projects": {
"app": {
"type": "application",
"sourceRoot": "src",
"entryFile": "main"
},
"processors": {
"type": "application",
"sourceRoot": "src/bin/processors",
"entryFile": "processors"
},
"scheduler": {
"type": "application",
"sourceRoot": "src/bin/scheduler",
"entryFile": "scheduler"
},
"gen-doc": {
"type": "application",
"sourceRoot": "src/bin/gen-doc",
"entryFile": "gen-doc"
}
}
}