tsconfig.json 684 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "extends": "../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "lib",
  5. "rootDir": "src",
  6. "module": "commonjs"
  7. },
  8. "include": ["src/*"],
  9. "references": [
  10. {
  11. "path": "../packages/apputils"
  12. },
  13. {
  14. "path": "../packages/cells"
  15. },
  16. {
  17. "path": "../packages/codeeditor"
  18. },
  19. {
  20. "path": "../packages/codemirror"
  21. },
  22. {
  23. "path": "../packages/coreutils"
  24. },
  25. {
  26. "path": "../packages/docregistry"
  27. },
  28. {
  29. "path": "../packages/nbformat"
  30. },
  31. {
  32. "path": "../packages/notebook"
  33. },
  34. {
  35. "path": "../packages/rendermime"
  36. },
  37. {
  38. "path": "../packages/services"
  39. }
  40. ]
  41. }