tsconfig.json 572 B

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