tsconfig.json 800 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "@components/*": [
  28. "components/*"
  29. ],
  30. }
  31. },
  32. "include": [
  33. "src",
  34. "rspress.config.ts",
  35. "src/zh/playground/canvas-engine/components",
  36. "components",
  37. "scripts"
  38. ],
  39. "mdx": {
  40. "checkMdx": true
  41. }
  42. }