tsconfig.json 439 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "build",
  5. "types": ["mocha"],
  6. "composite": false,
  7. "rootDir": "src",
  8. "skipLibCheck": true
  9. },
  10. "include": ["src/*"],
  11. "references": [
  12. {
  13. "path": "../../packages/docmanager"
  14. },
  15. {
  16. "path": "../../packages/docregistry"
  17. },
  18. {
  19. "path": "../../packages/services"
  20. },
  21. {
  22. "path": "../../testutils"
  23. }
  24. ]
  25. }