tsconfig.json 634 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["dom", "dom.iterable"],
  5. "types": [
  6. "vite/client",
  7. "vite-plugin-svgr/client",
  8. "jest",
  9. "@testing-library/jest-dom"
  10. ],
  11. "allowJs": true,
  12. "skipLibCheck": true,
  13. "esModuleInterop": true,
  14. "allowSyntheticDefaultImports": true,
  15. "strict": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "noFallthroughCasesInSwitch": true,
  18. "module": "esnext",
  19. "moduleResolution": "node",
  20. "resolveJsonModule": true,
  21. "isolatedModules": true,
  22. "noEmit": true,
  23. "jsx": "react-jsx"
  24. },
  25. "include": ["src", "../../src"]
  26. }