tsconfig.json 664 B

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