tsconfig.json 647 B

12345678910111213141516171819202122232425262728
  1. {
  2. "sourceMap": true,
  3. "compilerOptions": {
  4. "target": "ES2017",
  5. "lib": ["dom", "dom.iterable", "esnext"],
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "strict": true,
  9. "noEmit": true,
  10. "esModuleInterop": true,
  11. "module": "esnext",
  12. "moduleResolution": "bundler",
  13. "resolveJsonModule": true,
  14. "isolatedModules": true,
  15. "jsx": "preserve",
  16. "incremental": true,
  17. "plugins": [
  18. {
  19. "name": "next"
  20. }
  21. ],
  22. "paths": {
  23. "@/*": ["./src/*"]
  24. }
  25. },
  26. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  27. "exclude": ["node_modules", "src/components/ui/**"]
  28. }