tsconfig.json 690 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "extends": [
  3. "../../tsconfig.json",
  4. "../mobile/tsconfig.json",
  5. "../web/tsconfig.json"
  6. ],
  7. "compilerOptions": {
  8. "allowSyntheticDefaultImports": true,
  9. "moduleResolution": "bundler",
  10. "preserveSymlinks": true,
  11. "esModuleInterop": true,
  12. "jsx": "react-native",
  13. "target": "esnext"
  14. },
  15. "references": [
  16. {
  17. "path": "../../"
  18. },
  19. {
  20. "path": "../mobile"
  21. },
  22. {
  23. "path": "../web"
  24. }
  25. ],
  26. "include": [
  27. "**/*.ts",
  28. "**/*.tsx",
  29. "../../src/**/*",
  30. "../../src/types/index.ts",
  31. "**/*.json"
  32. ]
  33. }