tsconfig.build.json 776 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "extends": "../../../tsconfig.shared",
  3. "compilerOptions": {
  4. "noImplicitAny": false,
  5. "outDir": "./lib",
  6. "paths": {
  7. "@uppy/companion-client": ["../companion-client/src/index.js"],
  8. "@uppy/companion-client/lib/*": ["../companion-client/src/*"],
  9. "@uppy/utils/lib/*": ["../utils/src/*"],
  10. "@uppy/core": ["../core/src/index.js"],
  11. "@uppy/core/lib/*": ["../core/src/*"]
  12. },
  13. "resolveJsonModule": false,
  14. "rootDir": "./src",
  15. "skipLibCheck": true
  16. },
  17. "include": ["./src/**/*.*"],
  18. "exclude": ["./src/**/*.test.ts"],
  19. "references": [
  20. {
  21. "path": "../companion-client/tsconfig.build.json"
  22. },
  23. {
  24. "path": "../utils/tsconfig.build.json"
  25. },
  26. {
  27. "path": "../core/tsconfig.build.json"
  28. }
  29. ]
  30. }