tsconfig.json 865 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "lib": [
  6. "dom",
  7. "dom.iterable",
  8. "esnext"
  9. ],
  10. "allowJs": true,
  11. "skipLibCheck": true,
  12. "strict": true,
  13. "noEmit": true,
  14. "esModuleInterop": true,
  15. "module": "esnext",
  16. "resolveJsonModule": true,
  17. "isolatedModules": true,
  18. "jsx": "preserve",
  19. "plugins": [],
  20. "baseUrl": "src",
  21. "paths": {
  22. "@api/*": [
  23. "api/*"
  24. ],
  25. "@application/*": [
  26. "application/*"
  27. ],
  28. "@server/*": [
  29. "server/*"
  30. ],
  31. "@config/*": [
  32. "config/*"
  33. ],
  34. "@workflow/*": [
  35. "workflow/*"
  36. ]
  37. }
  38. },
  39. "include": [
  40. "**/*.ts",
  41. "**/*.tsx",
  42. "src/workflow/executor/condition/constant.ts"
  43. ],
  44. "exclude": [
  45. "node_modules"
  46. ]
  47. }