Files
typescript-decompiler/docs/reference/overview.md
T
2026-05-25 05:47:28 +00:00

1.3 KiB

Project Structure Overview

This template now treats bounded contexts as the primary organizing boundary. Pure vs impure separation still matters, but it now lives mostly inside each context instead of as one global folder tree.

Key documentation

Short version

  • src/contexts/ holds first-class bounded contexts.
  • src/workflows/ holds top-level cross-context orchestration.
  • src/shared/ stays tiny.
  • Cross-context calls go through public APIs, not internal file imports.
  • Rich domain types stay local to their context unless a primitive is truly ubiquitous.