tsconfig.dist.json 410 B

1234567891011121314151617
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "typeRoots": [
  5. "node_modules/@types",
  6. "client/node_modules/@types"
  7. ],
  8. "baseUrl": "./dist",
  9. "paths": {
  10. "@server/*": [ "server/core/*" ],
  11. "@client/*": [ "client/*" ],
  12. "@peertube/peertube-models": [ "peertube-models" ],
  13. "@peertube/peertube-typescript-utils": [ "peertube-typescript-utils" ]
  14. }
  15. }
  16. }