tsconfig.json 742 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
  3. "compilerOptions": {
  4. "target": "ES2020",
  5. "lib": [
  6. "DOM",
  7. "ES2020"
  8. ],
  9. "types": [
  10. "node"
  11. ],
  12. "moduleResolution": "bundler",
  13. "module": "ESNext",
  14. "jsx": "react-jsx",
  15. "noEmit": true,
  16. "strict": true,
  17. "skipLibCheck": true,
  18. "isolatedModules": true,
  19. "resolveJsonModule": true,
  20. "useDefineForClassFields": true,
  21. "allowImportingTsExtensions": true,
  22. "baseUrl": ".",
  23. "paths": {
  24. "@/*": [
  25. "src/*"
  26. ]
  27. }
  28. },
  29. "include": [
  30. "src",
  31. "rspress.config.ts",
  32. "src/zh/playground/canvas-engine/components",
  33. "components",
  34. "scripts"
  35. ],
  36. "mdx": {
  37. "checkMdx": true
  38. }
  39. }