Files
helix-engage-server/nest-cli.json
saridsa2 903e82b536 fix: include default-flows JSON in nest build assets
nest build only compiles TS — JSON files need explicit asset copy
in nest-cli.json compilerOptions.assets.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-20 18:48:22 +05:30

12 lines
274 B
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"assets": [
{ "include": "messaging/flow/default-flows/*.json", "watchAssets": true }
]
}
}