tsconfig.json 698 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "lib",
  5. "rootDir": "src",
  6. "strictNullChecks": false
  7. },
  8. "include": ["src/*"],
  9. "references": [
  10. {
  11. "path": "../application"
  12. },
  13. {
  14. "path": "../apputils"
  15. },
  16. {
  17. "path": "../coreutils"
  18. },
  19. {
  20. "path": "../logconsole"
  21. },
  22. {
  23. "path": "../mainmenu"
  24. },
  25. {
  26. "path": "../nbformat"
  27. },
  28. {
  29. "path": "../notebook"
  30. },
  31. {
  32. "path": "../rendermime"
  33. },
  34. {
  35. "path": "../services"
  36. },
  37. {
  38. "path": "../settingregistry"
  39. },
  40. {
  41. "path": "../statusbar"
  42. },
  43. {
  44. "path": "../ui-components"
  45. }
  46. ]
  47. }