tsconfig.json 444 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
  3. "compilerOptions": {
  4. "baseUrl": "src",
  5. "paths": {
  6. "@api/*": [
  7. "api/*"
  8. ],
  9. "@node/*": [
  10. "node/*"
  11. ],
  12. "@runtime/*": [
  13. "runtime/*"
  14. ],
  15. "@schema/*": [
  16. "schema/*"
  17. ],
  18. "@client/*": [
  19. "client/*"
  20. ]
  21. }
  22. },
  23. "include": [
  24. "./src"
  25. ],
  26. "exclude": [
  27. "node_modules"
  28. ]
  29. }