tsconfig.json 929 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "jsx": "react",
  4. "declaration": true,
  5. "target": "esnext",
  6. "module": "esnext",
  7. "moduleResolution": "node",
  8. "resolveJsonModule": true,
  9. "allowJs": true,
  10. "noEmit": true,
  11. "strict": true,
  12. "experimentalDecorators": true,
  13. "isolatedModules": true,
  14. "esModuleInterop": true,
  15. "baseUrl": "desktop/core/src/desktop/js",
  16. "typeRoots": [ "desktop/core/src/desktop/js/types", "./node_modules/@types"],
  17. "lib": [
  18. "es2019",
  19. "dom",
  20. "webworker"
  21. ]
  22. },
  23. "include": [
  24. "."
  25. ],
  26. "exclude": [
  27. "ext",
  28. "parse",
  29. "jquery",
  30. "apps",
  31. "build",
  32. "dist",
  33. "docs",
  34. "ext",
  35. "logs",
  36. "maven",
  37. "node_modules",
  38. ".github",
  39. ".git",
  40. ".circleci",
  41. // Temporary fix to prevent typescript generated JSX errors in the IDE
  42. // triggered by using baseUrl": "desktop/core/src/desktop/js".
  43. "**/*.tsx"
  44. ]
  45. }