tsconfig.json 522 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "rootDir": ".",
  7. "outDir": "dist",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "skipLibCheck": true,
  12. "declaration": true,
  13. "sourceMap": true,
  14. "jsx": "react-jsx",
  15. "types": ["node"]
  16. },
  17. "include": [
  18. "src/**/*.ts",
  19. "src/**/*.tsx",
  20. "tests/**/*.ts",
  21. "tests/**/*.tsx",
  22. "scripts/**/*.ts",
  23. "scripts/**/*.tsx"
  24. ]
  25. }