tsconfig.json 573 B

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