tsconfig.json 297 B

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