tsconfig.json 702 B

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