tsconfig.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "forceConsistentCasingInFileNames": true,
  4. "noFallthroughCasesInSwitch": true,
  5. "noUncheckedIndexedAccess": true,
  6. "noStrictGenericChecks": false,
  7. "allowUnreachableCode": false,
  8. "verbatimModuleSyntax": false,
  9. "noImplicitUseStrict": false,
  10. "noUnusedParameters": true,
  11. "allowUnusedLabels": false,
  12. "moduleResolution": "node",
  13. "noImplicitReturns": true,
  14. "resolveJsonModule": true,
  15. "esModuleInterop": true,
  16. "noUnusedLocals": true,
  17. "inlineSources": true,
  18. "skipLibCheck": true,
  19. "declaration": true,
  20. "jsx": "react-jsx",
  21. "composite": false,
  22. "module": "ESNext",
  23. "target": "ESNext",
  24. "lib": [
  25. "dom.iterable",
  26. "ESNext",
  27. "dom"
  28. ],
  29. "sourceMap": true,
  30. "outDir": "./lib",
  31. "rootDir": "src",
  32. "noEmit": false,
  33. "strict": true,
  34. "types": [
  35. "node"
  36. ]
  37. },
  38. "include": [
  39. "src/**/*"
  40. ],
  41. "exclude": [
  42. "node_modules",
  43. "lib"
  44. ]
  45. }