tsconfig.json 613 B

123456789101112131415161718192021222324252627
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "outDir": "./dist",
  5. "rootDir": "src",
  6. "tsBuildInfoFile": "./dist/.tsbuildinfo",
  7. "paths": {
  8. "@tests/*": [ "./src/*" ],
  9. "@server/*": [ "../../server/core/*" ]
  10. }
  11. },
  12. "references": [
  13. { "path": "../core-utils" },
  14. { "path": "../ffmpeg" },
  15. { "path": "../models" },
  16. { "path": "../node-utils" },
  17. { "path": "../typescript-utils" },
  18. { "path": "../server-commands" },
  19. { "path": "../../server/tsconfig.lib.json" }
  20. ],
  21. "include": [
  22. "./src/**/*.ts"
  23. ],
  24. "exclude": [
  25. "./fixtures"
  26. ]
  27. }