tsconfig.json 645 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "declaration": false,
  5. "noEmitOnError": true,
  6. "noEmit": true,
  7. "noFallthroughCasesInSwitch": true,
  8. "moduleResolution": "node",
  9. "module": "ESNext",
  10. "target": "ESNext",
  11. "esModuleInterop": true,
  12. "isolatedModules": true,
  13. "lib": ["esnext", "dom"],
  14. "skipLibCheck": true,
  15. "resolveJsonModule": true,
  16. "allowSyntheticDefaultImports": true,
  17. "downlevelIteration": true,
  18. "sourceMap": true,
  19. "outDir": "./dist",
  20. "jsx": "react-jsx",
  21. "jsxImportSource": "preact",
  22. "types": ["@testing-library/jest-dom"],
  23. },
  24. "exclude": ["**/node_modules"]
  25. }