tsconfig.json 599 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "commonjs",
  5. "lib": [
  6. "dom",
  7. "esnext"
  8. ],
  9. "resolveJsonModule": true,
  10. "allowJs": true,
  11. "noImplicitAny": true,
  12. "noImplicitThis": true,
  13. "strictNullChecks": true,
  14. "types": [],
  15. "noEmit": true,
  16. "esModuleInterop": true,
  17. "allowSyntheticDefaultImports": false,
  18. "strictFunctionTypes": true,
  19. "forceConsistentCasingInFileNames": true
  20. },
  21. "include": [
  22. "packages/*/types/index.d.ts",
  23. "packages/@uppy/*/types/index.d.ts"
  24. ],
  25. "exclude": [
  26. "packages/@uppy/companion"
  27. ]
  28. }