ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 845 B

12345678910111213141516171819202122232425262728293031
  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. "@peertube/peertube-transcription": [ "../transcription" ],
  11. "@peertube/peertube-transcription-devtools": [ "../transcription-devtools" ],
  12. }
  13. },
  14. "references": [
  15. { "path": "../core-utils" },
  16. { "path": "../ffmpeg" },
  17. { "path": "../transcription-devtools" },
  18. { "path": "../models" },
  19. { "path": "../node-utils" },
  20. { "path": "../typescript-utils" },
  21. { "path": "../server-commands" },
  22. { "path": "../transcription" },
  23. { "path": "../../server/tsconfig.lib.json" }
  24. ],
  25. "include": [
  26. "./src/**/*.ts"
  27. ],
  28. "exclude": [
  29. "./fixtures"
  30. ]
  31. }