tsconfig.json 757 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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": "../codeeditor"
  17. },
  18. {
  19. "path": "../coreutils"
  20. },
  21. {
  22. "path": "../docregistry"
  23. },
  24. {
  25. "path": "../nbformat"
  26. },
  27. {
  28. "path": "../observables"
  29. },
  30. {
  31. "path": "../rendermime"
  32. },
  33. {
  34. "path": "../services"
  35. },
  36. {
  37. "path": "../settingregistry"
  38. },
  39. {
  40. "path": "../shared-models"
  41. },
  42. {
  43. "path": "../statusbar"
  44. },
  45. {
  46. "path": "../translation"
  47. },
  48. {
  49. "path": "../ui-components"
  50. }
  51. ]
  52. }