tsconfig.host.json 550 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "lib/types",
  6. "tsBuildInfoFile": "lib/tsconfig.host.tsbuildinfo"
  7. },
  8. "references": [
  9. {
  10. "path": "../../../vendor/cordis"
  11. },
  12. {
  13. "path": "../../typert/protocol"
  14. },
  15. {
  16. "path": "../../document/office-to-pdf"
  17. },
  18. {
  19. "path": "../workspace-files/tsconfig.host.json"
  20. },
  21. {
  22. "path": "../../util/brand"
  23. }
  24. ],
  25. "include": [
  26. "src/**/*.ts"
  27. ],
  28. "exclude": [
  29. "src/client"
  30. ]
  31. }