tsconfig.json 696 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "jsx": "preserve",
  4. "lib": [
  5. "ES2022",
  6. "DOM",
  7. "DOM.Iterable"
  8. ],
  9. "module": "ESNext",
  10. "moduleResolution": "bundler",
  11. "target": "ES2022",
  12. "strict": true,
  13. "allowJs": true,
  14. "incremental": true,
  15. "esModuleInterop": true,
  16. "skipLibCheck": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "paths": {
  19. "@/*": [
  20. "./src/*"
  21. ]
  22. },
  23. "plugins": [
  24. {
  25. "name": "next"
  26. }
  27. ],
  28. "noEmit": true,
  29. "isolatedModules": true,
  30. "resolveJsonModule": true
  31. },
  32. "include": [
  33. "next-env.d.ts",
  34. "src",
  35. ".next/types/**/*.ts"
  36. ],
  37. "exclude": [
  38. "node_modules"
  39. ]
  40. }