tsconfig.json 677 B

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