tsconfig.json 426 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": ".",
  5. "outDir": "lib/types",
  6. "jsx": "react-jsx",
  7. "lib": [
  8. "ES2024",
  9. "DOM",
  10. "DOM.Iterable"
  11. ],
  12. "types": [
  13. "node"
  14. ]
  15. },
  16. "include": [
  17. "src",
  18. "tests"
  19. ],
  20. "references": [
  21. {
  22. "path": "../../packages/client/web"
  23. },
  24. {
  25. "path": "../../packages/client/modules"
  26. }
  27. ]
  28. }