tsconfig.json 884 B

12345678910111213141516171819202122232425262728293031
  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/utils/lib/*": ["../utils/src/*"],
  12. "@uppy/core": ["../core/src/index.js"],
  13. "@uppy/core/lib/*": ["../core/src/*"],
  14. },
  15. },
  16. "include": ["./package.json", "./src/**/*.*"],
  17. "references": [
  18. {
  19. "path": "../companion-client/tsconfig.build.json",
  20. },
  21. {
  22. "path": "../provider-views/tsconfig.build.json",
  23. },
  24. {
  25. "path": "../utils/tsconfig.build.json",
  26. },
  27. {
  28. "path": "../core/tsconfig.build.json",
  29. },
  30. ],
  31. }