You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.web.json 777B

123456789101112131415161718192021222324252627
  1. {
  2. "include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.d.ts"],
  3. "compilerOptions": {
  4. "allowSyntheticDefaultImports": true,
  5. "module": "es2020",
  6. "target": "es2024",
  7. "jsx": "react",
  8. "lib": [ "ES2024", "DOM" ],
  9. "skipLibCheck": true,
  10. "moduleResolution": "Node",
  11. "strict": true,
  12. "noImplicitAny": true,
  13. "strictPropertyInitialization": false,
  14. "resolveJsonModule": true,
  15. "moduleSuffixes": [".web", ""]
  16. },
  17. "exclude": [
  18. "node_modules",
  19. "react/features/share-room",
  20. "**/mobile/*",
  21. "**/native/*",
  22. "**/*.native.ts",
  23. "**/*.native.tsx",
  24. "**/*.ios.ts",
  25. "**/*.android.ts"
  26. ]
  27. }