tsconfig.json 304 B

123456789101112131415161718192021
  1. {
  2. "extends": "@repo/typescript-config/nextjs.json",
  3. "compilerOptions": {
  4. "plugins": [
  5. {
  6. "name": "next"
  7. }
  8. ]
  9. },
  10. "include": [
  11. "**/*.ts",
  12. "**/*.tsx",
  13. "next-env.d.ts",
  14. "next.config.js",
  15. ".next/types/**/*.ts"
  16. ],
  17. "exclude": [
  18. "node_modules"
  19. ]
  20. }