tsconfig.json 493 B

12345678910111213141516171819202122232425262728
  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. "baseUrl": "../",
  13. "typeRoots": [
  14. "../"
  15. ],
  16. "types": [],
  17. "noEmit": true,
  18. "esModuleInterop": true,
  19. "allowSyntheticDefaultImports": true,
  20. "strictFunctionTypes": true,
  21. "forceConsistentCasingInFileNames": true
  22. },
  23. "files": [
  24. "index.d.ts",
  25. "uppy-tests.ts",
  26. "uppy-tests-official.ts"
  27. ]
  28. }