tsconfig.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "extends": "../../../tsconfig.shared",
  3. "compilerOptions": {
  4. "emitDeclarationOnly": false,
  5. "noEmit": true,
  6. "paths": {
  7. "@uppy/companion-client": ["../companion-client/src/index.js"],
  8. "@uppy/companion-client/lib/*": ["../companion-client/src/*"],
  9. "@uppy/provider-views": ["../provider-views/src/index.js"],
  10. "@uppy/provider-views/lib/*": ["../provider-views/src/*"],
  11. "@uppy/tus": ["../tus/src/index.js"],
  12. "@uppy/tus/lib/*": ["../tus/src/*"],
  13. "@uppy/utils/lib/*": ["../utils/src/*"],
  14. "@uppy/core": ["../core/src/index.js"],
  15. "@uppy/core/lib/*": ["../core/src/*"],
  16. },
  17. },
  18. "include": ["./package.json", "./src/**/*.*"],
  19. "references": [
  20. {
  21. "path": "../companion-client/tsconfig.build.json",
  22. },
  23. {
  24. "path": "../provider-views/tsconfig.build.json",
  25. },
  26. {
  27. "path": "../tus/tsconfig.build.json",
  28. },
  29. {
  30. "path": "../utils/tsconfig.build.json",
  31. },
  32. {
  33. "path": "../core/tsconfig.build.json",
  34. },
  35. ],
  36. }