tsconfig.json 657 B

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