tsconfig.json 611 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "lib",
  5. "rootDir": "src",
  6. "types": ["webpack-env"]
  7. },
  8. "include": ["src/*"],
  9. "references": [
  10. {
  11. "path": "../application"
  12. },
  13. {
  14. "path": "../apputils"
  15. },
  16. {
  17. "path": "../launcher"
  18. },
  19. {
  20. "path": "../mainmenu"
  21. },
  22. {
  23. "path": "../running"
  24. },
  25. {
  26. "path": "../services"
  27. },
  28. {
  29. "path": "../settingregistry"
  30. },
  31. {
  32. "path": "../terminal"
  33. },
  34. {
  35. "path": "../translation"
  36. },
  37. {
  38. "path": "../ui-components"
  39. }
  40. ]
  41. }