tsconfig.json 786 B

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