tsconfig.json 900 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "moduleResolution": "bundler",
  17. "resolveJsonModule": true,
  18. "isolatedModules": true,
  19. "jsx": "preserve",
  20. "plugins": [],
  21. "baseUrl": "src",
  22. "paths": {
  23. "@api/*": [
  24. "api/*"
  25. ],
  26. "@application/*": [
  27. "application/*"
  28. ],
  29. "@server/*": [
  30. "server/*"
  31. ],
  32. "@config/*": [
  33. "config/*"
  34. ],
  35. "@workflow/*": [
  36. "workflow/*"
  37. ]
  38. }
  39. },
  40. "include": [
  41. "**/*.ts",
  42. "**/*.tsx",
  43. "src/workflow/executor/condition/constant.ts"
  44. ],
  45. "exclude": [
  46. "node_modules"
  47. ]
  48. }