tsconfig.types.json 597 B

123456789101112131415161718192021
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "../packages/types-generator/dist/server",
  5. "tsBuildInfoFile": "../packages/types-generator/dist/server/.tsbuildinfo",
  6. "stripInternal": true,
  7. "removeComments": false,
  8. "emitDeclarationOnly": true
  9. },
  10. "references": [
  11. { "path": "../packages/core-utils" },
  12. { "path": "../packages/ffmpeg" },
  13. { "path": "../packages/models" },
  14. { "path": "../packages/node-utils" },
  15. { "path": "../packages/server-commands" },
  16. { "path": "../packages/typescript-utils" }
  17. ],
  18. "exclude": [
  19. "tests/"
  20. ]
  21. }