tsconfig.json 761 B

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