tsconfig.json 954 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "compilerOptions": {
  3. "skipLibCheck": true,
  4. "allowSyntheticDefaultImports": true,
  5. "composite": true,
  6. "declaration": true,
  7. "esModuleInterop": true,
  8. "incremental": true,
  9. "jsx": "react",
  10. "module": "esnext",
  11. "moduleResolution": "node",
  12. "noEmitOnError": true,
  13. "noImplicitAny": true,
  14. "noUnusedLocals": true,
  15. "preserveWatchOutput": true,
  16. "resolveJsonModule": true,
  17. "outDir": "lib",
  18. "rootDir": "src",
  19. "strict": true,
  20. "strictNullChecks": true,
  21. "target": "es2017",
  22. "types": ["jest"]
  23. },
  24. "include": ["src/**/*"],
  25. "references": [
  26. {
  27. "path": "../application"
  28. },
  29. {
  30. "path": "../apputils"
  31. },
  32. {
  33. "path": "../docregistry"
  34. },
  35. {
  36. "path": "../filebrowser"
  37. },
  38. {
  39. "path": "../mainmenu"
  40. },
  41. {
  42. "path": "../settingregistry"
  43. },
  44. {
  45. "path": "../ui-components"
  46. }
  47. ],
  48. "extends": "../../tsconfigbase"
  49. }