tsconfig.json 327 B

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