tsconfig.json 421 B

1234567891011121314151617181920212223242526
  1. {
  2. "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
  3. "compilerOptions": {
  4. "baseUrl": "src",
  5. "paths": {
  6. "@application/*": [
  7. "application/*"
  8. ],
  9. "@workflow/*": [
  10. "domain/*"
  11. ],
  12. "@infra/*": [
  13. "infrastructure/*"
  14. ],
  15. "@nodes/*": [
  16. "nodes/*"
  17. ],
  18. }
  19. },
  20. "include": [
  21. "./src"
  22. ],
  23. "exclude": [
  24. "node_modules"
  25. ]
  26. }