Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

tsconfig.native.json 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.native.d.ts"],
  3. "compilerOptions": {
  4. "allowSyntheticDefaultImports": true,
  5. "target": "es2020",
  6. "jsx": "react-native",
  7. "lib": [ "ES2020", "ES2024.Promise" ],
  8. "types": [ "react-native" ],
  9. "skipLibCheck": true,
  10. "moduleResolution": "Node",
  11. "strict": true,
  12. "noImplicitAny": true,
  13. "strictPropertyInitialization": false,
  14. "resolveJsonModule": true,
  15. "moduleSuffixes": [".native", ".ios", ".android", ""]
  16. },
  17. "exclude": [
  18. "node_modules",
  19. "react/features/always-on-top",
  20. "react/features/base/components/participants-pane-list",
  21. "react/features/base/tooltip",
  22. "react/features/connection-stats",
  23. "react/features/desktop-picker",
  24. "react/features/e2ee",
  25. "react/features/embed-meeting",
  26. "react/features/face-landmarks",
  27. "react/features/keyboard-shortcuts",
  28. "react/features/no-audio-signal",
  29. "react/features/noise-suppression",
  30. "react/features/old-client-notification",
  31. "react/features/remote-control",
  32. "react/features/screen-share",
  33. "react/features/screenshot-capture",
  34. "react/features/stream-effects",
  35. "react/features/virtual-background",
  36. "react/features/web-hid",
  37. "react/features/whiteboard",
  38. "**/web/*",
  39. "**/*.web.ts",
  40. "**/*.web.tsx"
  41. ]
  42. }