tsconfig.json 604 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "build",
  5. "types": ["mocha", "node"],
  6. "composite": false,
  7. "rootDir": "src",
  8. "skipLibCheck": true
  9. },
  10. "include": ["src/*"],
  11. "references": [
  12. {
  13. "path": "../../packages/apputils"
  14. },
  15. {
  16. "path": "../../packages/coreutils"
  17. },
  18. {
  19. "path": "../../packages/mathjax2"
  20. },
  21. {
  22. "path": "../../packages/nbformat"
  23. },
  24. {
  25. "path": "../../packages/rendermime"
  26. },
  27. {
  28. "path": "../../packages/services"
  29. },
  30. {
  31. "path": "../../testutils"
  32. }
  33. ]
  34. }