tsconfig.json 417 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "lib",
  5. "rootDir": "src"
  6. },
  7. "include": ["src/*"],
  8. "references": [
  9. {
  10. "path": "../coreutils"
  11. },
  12. {
  13. "path": "../nbformat"
  14. },
  15. {
  16. "path": "../observables"
  17. },
  18. {
  19. "path": "../shared-models"
  20. },
  21. {
  22. "path": "../translation"
  23. },
  24. {
  25. "path": "../ui-components"
  26. }
  27. ]
  28. }