tsconfig.json 698 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "compilerOptions": {
  3. "lib": [
  4. "dom",
  5. "dom.iterable",
  6. "esnext"
  7. ],
  8. "allowJs": true,
  9. "skipLibCheck": true,
  10. "strict": true,
  11. "noEmit": true,
  12. "esModuleInterop": true,
  13. "module": "esnext",
  14. "moduleResolution": "bundler",
  15. "resolveJsonModule": true,
  16. "isolatedModules": true,
  17. "jsx": "react-jsx",
  18. "incremental": true,
  19. "plugins": [
  20. {
  21. "name": "next"
  22. }
  23. ],
  24. "paths": {
  25. "@/*": [
  26. "./*"
  27. ]
  28. },
  29. "target": "ES2017"
  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. }