tsconfig.json 476 B

123456789101112131415161718192021
  1. {
  2. "extends": "../../../tsconfig.shared",
  3. "compilerOptions": {
  4. "emitDeclarationOnly": false,
  5. "noEmit": true,
  6. "paths": {
  7. "@uppy/utils/lib/*": ["../utils/src/*"],
  8. "@uppy/core": ["../core/src/index.js"],
  9. "@uppy/core/lib/*": ["../core/src/*"],
  10. },
  11. },
  12. "include": ["./package.json", "./src/**/*.*"],
  13. "references": [
  14. {
  15. "path": "../utils/tsconfig.build.json",
  16. },
  17. {
  18. "path": "../core/tsconfig.build.json",
  19. },
  20. ],
  21. }