tsconfig.json 736 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "lib": ["dom", "dom.iterable", "esnext", "es2018.regexp"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "strict": true,
  8. "noEmit": true,
  9. "esModuleInterop": true,
  10. "module": "esnext",
  11. "moduleResolution": "bundler",
  12. "resolveJsonModule": true,
  13. "isolatedModules": true,
  14. "jsx": "react-jsx",
  15. "incremental": true,
  16. "types": ["vitest/globals", "node"],
  17. "plugins": [
  18. {
  19. "name": "next"
  20. }
  21. ],
  22. "paths": {
  23. "@/*": ["./src/*"]
  24. }
  25. },
  26. "include": [
  27. "next-env.d.ts",
  28. "**/*.ts",
  29. "**/*.tsx",
  30. ".next/types/**/*.ts",
  31. ".next/dev/types/**/*.ts",
  32. "**/*.mts"
  33. ],
  34. "exclude": ["node_modules", "cron"]
  35. }